0

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?

Uwe Keim
  • 39,551
  • 56
  • 175
  • 291
Asif
  • 763
  • 8
  • 18

1 Answers1

0

The count of contours is in the value Size. Or in your case contour1.Size.

Doug

AeroClassics
  • 1,074
  • 9
  • 19
  • Counter is a class . present in 1.5 version of Emgu. i can not creae a referce to it in 3.2 version of Emgu – Asif Aug 24 '17 at 05:03
  • I do not go back as 1.5 as I start in 2.4. But a quick search and I see no such class, Contour yes, Counter no. – AeroClassics Aug 24 '17 at 13:26