What are the correct usage/parameter values for HoughCircles in OpenCV for Iris detection?

前端 未结 2 1426
借酒劲吻你
借酒劲吻你 2020-12-12 13:52

I\'ve been reading about the subject but cannot get the idea in \"plain English\" about the usage and parameters for HoughCircles (specially the ones after

2条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-12 14:53

    My alternative suggestion is to use Threshold and Blob analysis. It more simple to detect iris than using canny edge and hough transform.

    My way is... First you threshold it. Pick up any threshold value until the black and white image produce only (black color) iris and eyelashes.

    Then separate the the iris and eyelashes by putting in blob analysis value min length at XX and min width at YY. The XX and YY value are the value of iris length and width.

提交回复
热议问题