source:
libs/vision/python/test.py
@
153
Revision 153, 166 bytes checked in by dave, 10 years ago (diff) | |
---|---|
|
Line | |
---|---|
1 | #!/usr/bin/env python |
2 | |
3 | from suds import * |
4 | |
5 | v2 = Image(10,10,8,3) |
6 | |
7 | v = FloatVector(100) |
8 | v[10]=99 |
9 | print(v[10]) |
10 | |
11 | m = FloatMatrix(10,10) |
12 | m.Set(4,4,999) |
13 | print(m.Get(4,4)) |
Note: See TracBrowser
for help on using the repository browser.