Sayak
Sayak

Reputation: 347

How to distort an Image in OpenCV?

I see that there are several ways to distort an image. like...Circle, Diffuse, Marble, Ripple, Twirl, Water, ...

I have come across some ipl functions like, iplRotateCenter(), iplWarpAffine(), iplShear() etc. does OpenCV have any such functions? if i need to use the ipl library in opencv, how to do it?

Upvotes: 2

Views: 2574

Answers (1)

DanielHsH
DanielHsH

Reputation: 4453

Open CV has such functions. Old openCV (C inreface), methods like cvWarpPerspective(), cvRemap(), cvLogPolar() New openCV (C++ inreface), methods like warpPerspective(), remap(),...

Upvotes: 2

Related Questions