OpenCV:cvThreshold 在某些图像尺寸下会崩溃

发布于 2025-01-01 17:03:00 字数 743 浏览 1 评论 0原文

我正在尝试过滤掉图像中的噪音。图像的大小会不时发生变化。看来cvThreshold只能处理特定尺寸的图像。这段代码正在工作(尽管它什么也没做):

IplImage* iplTresh = cvCreateImage(cvSize(65, 49), 8, 1);
cvThreshold(iplTresh, iplTresh, 100, 255, CV_THRESH_BINARY);
cvReleaseImage(&iplTresh);

这段代码正在崩溃(宽度从 65 更改为 89):

IplImage* iplTresh = cvCreateImage(cvSize(89, 49), 8, 1);
cvThreshold(iplTresh, iplTresh, 100, 255, CV_THRESH_BINARY);
cvReleaseImage(&iplTresh);

错误消息:

Program received signal SIGILL, Illegal instruction.
0x00007ffff1529da7 in cv::threshold(cv::_InputArray const&, cv::_OutputArray const&, double, double, int) ()
from /usr/local/lib/libopencv_imgproc.so.2.3

有什么想法吗?提前致谢, 干杯

I'm trying to filter out noise from an image. The size of the image changes from time to time. It seems that cvThreshold can only handle images with certain sizes. This code is working (although it does nothing):

IplImage* iplTresh = cvCreateImage(cvSize(65, 49), 8, 1);
cvThreshold(iplTresh, iplTresh, 100, 255, CV_THRESH_BINARY);
cvReleaseImage(&iplTresh);

This code is crashing (width changed from 65 to 89):

IplImage* iplTresh = cvCreateImage(cvSize(89, 49), 8, 1);
cvThreshold(iplTresh, iplTresh, 100, 255, CV_THRESH_BINARY);
cvReleaseImage(&iplTresh);

error message:

Program received signal SIGILL, Illegal instruction.
0x00007ffff1529da7 in cv::threshold(cv::_InputArray const&, cv::_OutputArray const&, double, double, int) ()
from /usr/local/lib/libopencv_imgproc.so.2.3

Any ideas? Thanks in advance,
cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文