I am using Emgu CV 3.2.0 with c# for pixels detection. I can not find Counter in Emgu CV 3.2.0.
Code is here:
Contour<Point> contour1 = cannyGray.FindContours();
Where is counter present in Emgu CV 3.2.0? Or has it been replaced?
The count of contours is in the value Size. Or in your case contour1.Size.
Doug