nick11
nick11

Reputation: 11

How to smooth hand boundary

I have generated edge using canny. The resulting image has rough boundary. How can I smooth it? Simple opening moprph operation doesn't work.
Hand Boundary Image Link

Upvotes: 0

Views: 541

Answers (1)

Shai
Shai

Reputation: 114926

You can try and trace the boundary (using, e.g., bwtraceboundary) then fit a curve to the boundary points (using e.g., polyfit) choosing the degree of the polynom can help you achive the proper smoothing

Upvotes: 1

Related Questions