Skip to content

Commit

Permalink
ofxCvContourFinder: cannot copy images with different ROI. Closes ope…
Browse files Browse the repository at this point in the history
  • Loading branch information
arturoc committed Apr 26, 2010
1 parent 51cf4a9 commit ee3eb6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/ofxOpenCv/src/ofxCvContourFinder.cpp
Expand Up @@ -69,8 +69,8 @@ int ofxCvContourFinder::findContours( ofxCvGrayscaleImage& input,
inputCopy.allocate( _width, _height );
}

inputCopy = input;
inputCopy.setROI( input.getROI() );
inputCopy = input;

CvSeq* contour_list = NULL;
contour_storage = cvCreateMemStorage( 1000 );
Expand Down

0 comments on commit ee3eb6c

Please sign in to comment.