OpenCV: Using Hough Circle Transformation to detect iris

后端 未结 1 1639
暗喜
暗喜 2020-12-18 03:17

I am newbie to openCV, but I want to create iris recognition program. Although the system with webcam can detect the eyes, it cannot, however, detect the circular iris. I am

1条回答
  •  有刺的猬
    2020-12-18 04:03

    Add a call to cvCanny() between cvSmooth() and cvHoughCircles(). This will execute an edge detection algorithm which is going to provide a better input image for cvHoughCircles() and will probably improve your results.

    There's a lot of similar questions on Stackoverflow, I suggest you use the search box.

    0 讨论(0)
提交回复
热议问题