diff options
| author | Tim Redfern <tim@getdrop.com> | 2018-01-24 23:40:49 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2018-01-24 23:40:49 +0000 |
| commit | 404746784ce6ef2b87c396a12451947fee28b244 (patch) | |
| tree | b6217e1087993588d19fd6d51e24997d67ee2d4e /drawing/src/ofApp.cpp | |
| parent | 60b2973637d6150f3facb74eb9ae1d475071b915 (diff) | |
colourPolyline
Diffstat (limited to 'drawing/src/ofApp.cpp')
| -rw-r--r-- | drawing/src/ofApp.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/drawing/src/ofApp.cpp b/drawing/src/ofApp.cpp index 8928df6..d110414 100644 --- a/drawing/src/ofApp.cpp +++ b/drawing/src/ofApp.cpp @@ -241,22 +241,25 @@ void ofApp::draw(){ } case 7: { movie.update(); + ofPoint scale=ofPoint(ofGetWidth()/movie.getWidth(),ofGetHeight()/movie.getHeight()); if (movie.isFrameNew()){ colorImg.setFromPixels(movie.getPixels()); grayImage = colorImg; grayImage.threshold(threshold); contourFinder.findContours(grayImage, 20, (340*240)/3, 10, true); } - vector <ofPolyline> shapes; + vector <colourPolyline> shapes; for (int i = 0; i < contourFinder.nBlobs; i++){ - ofPolyline shape; + colourPolyline shape; for (auto& point:contourFinder.blobs[i].pts){ - shape.addVertex(point); + ofVec3f p=point*scale; + ofColor c=colorImg.getPixels().getColor(point.x,point.y); + shape.addVertex(p,c); } shapes.push_back(shape); segmentsdrawn++; pointsdrawn+=shape.size(); - contourFinder.blobs[i].draw(0,0); + shape.draw(); } break; } |
