Reputation: 74
working on my final year project on fall detection I have completed till background subtraction now I have to draw a ellipse around the foreground object how to do it?? please help!!
Upvotes: 0
Views: 314
Reputation: 8980
There is an ellipse
function just for that (link). You also have the circle
function (link).
Upvotes: 1
Reputation: 50667
You're looking for cv::ellipse()
.
You can find some examples here.
Upvotes: 1