Changeset 1031
- Timestamp:
- 03/29/2011 09:32:57 AM (9 years ago)
- Location:
- libs/magicsquares
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libs/magicsquares/applications/harvest/README
r665 r1031 1 A drawing scanning program for reading webcamera images and 2 converting them into seperated, background removed png images. 1 3 4 There are lots of controls for thresholding and crop areas, for 5 now read the source (in App.cpp) to find out what they do. 2 6 7 The images have the original centroid positions encoded in the 8 filename. This allows them to be reassembled and animated using 9 dynamically created skeletons. 10 11 At the moment skeletons are calculated and procedurally animated 12 using Prims MST algorithm in the Germination X game 13 (see lirec/scenarios/GerminationX/) 14 15 dave@fo.am 16 -
libs/magicsquares/src/Image.cpp
r784 r1031 193 193 cvCopy(m_Image,newimage); 194 194 cvResetImageROI(m_Image); 195 return newimage; 195 Image ret(newimage); 196 cvReleaseImage(&newimage); 197 return ret; 196 198 } 197 199
Note: See TracChangeset
for help on using the changeset viewer.