Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Isn't the following line wrong?

Core.rectangle(image, new Point(rect.x,rect.height), new Point(rect.y,rect.width),new Scalar(0,0,255));

I think it should be:

Core.rectangle(image, new Point(rect.x,rect.y), new Point(rect.x+rect.width,rect.y+rect.height),new Scalar(0,0,255));