Skip to content

Commit

Permalink
ofxCvImage: remove old macro not present on some versions.
Browse files Browse the repository at this point in the history
Fixes #6012
  • Loading branch information
arturoc committed Jul 30, 2018
1 parent 58e47e3 commit 84a8328
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/ofxOpenCv/src/ofxCvImage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ void ofxCvImage::drawBlobIntoMe( ofxCvBlob& blob, int color ) {
}
int nPts = blob.nPts;
cvFillPoly( cvImage, &pts, &nPts, 1,
CV_RGB(color,color,color) );
cvScalar(color,color,color) );
delete[] pts;
}
}
Expand Down

0 comments on commit 84a8328

Please sign in to comment.