I am new to OpenCV. I am converting C++ code into Java code. By referencing this link.
While doing this I came across this line:
findContours(connected, contours, hierarchy, CV_RETR_CCOMP,
CV_CHAIN_APPROX_SIMPLE, Point(0, 0));
CV_RETR_CCOMP
and CV_CHAIN_APPROX_SIMPLE
not found in Java OpenCV 3.2.0.
Any reference link or any tutorial regarding this would be great help.