Ellipse Detection using Hough Transform

前端 未结 4 1667
南笙
南笙 2020-12-06 06:49

using Hough Transform, how can I detect and get coordinates of (x0,y0) and \"a\" and \"b\" of an ellipse in 2D space?

This is ellipse01.bmp:

4条回答
  •  春和景丽
    2020-12-06 07:26

    If you use circle for rough transform is given as rho = xcos(theta) + ysin(theta) For ellipse since it is enter image description here

    You could transform the equation as rho = axcos(theta) + bysin(theta) Although I am not sure if you use standard Hough Transform, for ellipse-like transforms, you could manipulate the first given function.

提交回复
热议问题