I just started to learn Emgu and OpenCV. So it might be a stupid question. When I look at Emgu documentation (see link http://www.emgu.com/wiki/files/3.1.0/document/html/cb24a129-d9ce-57f3-19ad-0eaa27a77317.htm ), I cannot find an example. But I suppose you used it in the form of
CvInvoke.FindContours(...)
But when I searched stackoverflow, I found this person just used the following form in the middle-bottom section of his code enter link description here
grayImage.FindContours()
However, when I tried the later, Visual studio simply doesn't accept it. (ie, when I typed in grayImage.F the pop up simply doesn't have FindContours function).
I am using the latest opencv and emgu. Any ideas?