Reputation: 167
I have looked at the opencv 2.4 reference and I cannot find an equivalent of snakeImage. Therefore what other methods can I implement to achieve the same result?
Many Thanks
Upvotes: 0
Views: 3635
Reputation: 21
It was moved to legacy. Python binding: cv2.cv.SnakeImage()
Upvotes: 0
Reputation: 29
You can use the definition of the snake
of previous releases (eg. opencv2.0
).
snake opencv 2.0
It works efficiently.
Upvotes: 1
Reputation: 93410
This is one approach: Active Contour (Snake) with OpenCV
But search on Google, you'll find more interesting results.
Upvotes: 0