如何在 OpenCV 中扭曲图像?
我发现有几种方法可以扭曲图像。比如...Circle、Diffuse、Marble、Ripple、Twirl、Water...
我遇到过一些 ipl 函数,例如 iplRotateCenter()、iplWarpAffine()、iplShear() 等。OpenCV 有这样的函数吗?如果我需要在opencv中使用ipl库,该怎么做?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Open CV就有这样的功能。
旧的 openCV (C inreface),方法如 cvWarpPerspective()、cvRemap()、cvLogPolar()
新的 openCV (C++ inreface),像 warpPerspective()、remap() 等方法,...
Open CV has such functions.
Old openCV (C inreface), methods like cvWarpPerspective(), cvRemap(), cvLogPolar()
New openCV (C++ inreface), methods like warpPerspective(), remap(),...