Emgu CV Blob Detection

后端 未结 2 2008
半阙折子戏
半阙折子戏 2021-01-15 01:07

I\'m using Emgu CV 2.1 and want to have a simple blob detection. I search for white blobs in a black image. Unfortunalty I can not find out how to do this! Do I need an addi

2条回答
  •  礼貌的吻别
    2021-01-15 02:02

    You have SimpleBlobDetector class just for that , Just call Detect() on your image.

    Another way is to use cannyEdgeDetection() followed with FindContours method, both in Image class .

提交回复
热议问题