分割 IplImages?
如何在 OpenCV 中分割 2 个 IplImage? .
dirn->imageData = (float*)(drv32fy/drv32fx); 另外,我尝试使用 cvDivide()
但它给出
error: invalid operands of types ‘IplImage*’ and ‘IplImage*’ to binary ‘operator/’
错误:“cvDivide”未在此范围内声明
How to divide 2 IplImages in OpenCV?. .
dirn->imageData = (float*)(drv32fy/drv32fx); gives
error: invalid operands of types ‘IplImage*’ and ‘IplImage*’ to binary ‘operator/’
Also, i tried using cvDivide()
but it gives
error: ‘cvDivide’ was not declared in this scope
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要 cvDiv() 或 cv::divide() 。
You need either cvDiv() or cv::divide().