Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
cvWatershed() 接受两个参数 Iplimage *src_image 和 CvArr* 标记。
任何人都可以详细说明标记参数,因为我需要根据我的触摸来分割我的图像,那么标记数组是否可以根据我的触摸实时形成,然后调用 cvWatershed..?
是的,你可以实时形成它。
直接取自 OpenCV 文档http://opencv.willowgarage.com/documentation/cpp/imgproc_miscellaneous_image_transformations.html?highlight=watershed#watershed
在将图像传递给函数之前,用户必须在图像标记中用正(> 0)索引大致勾勒出所需的区域……标记将是未来图像区域的“种子”。