现象:调用cvLoadImage加载图片时报OpenCV Error: Insufficient memory (Failed to allocate 3221225472 bytes) in cv::OutOfMemoryError

通过错误描述可以大致猜想,是在申请内存时崩溃,且这个值的大小超过了int的最大值,带着猜想我们跟一下opencv的源码。

调用栈如下:

cvLoadImage->cv::imread_->cvCreateImage->cvCreateImageHeader->cvInitImageHeader->cvCreateData

cvInitImageHeader中计算图片像素大小,关键代码段:array.cpp::cvInitImageHeader

opencv
OpenCV: 开源计算机视觉库
image->widthStep = (((image->width * image->nChannels *
         (image->depth & ~IPL_DEPTH_SIGN) + 7)/8)+ align - 1) & (~(align - 1));
image->origin = origin;
image->imageSize = image->widthStep * image->height;

此时,由于图片像素太大,opencv计算出的 image->imageSize 的值为3221225472,而image->imageSize的类型为int,该值已经超过了正整数的最大值,导致发生了截断,在内存中表示的值为-1073741824。而在cvCreateData中,会用这个大小去申请内存,程序自然就崩掉了。

 

总结:图片像素过大,opencv算出来的值超过了int的最大值,发生了截断,算法就是以上几行代码。然后用这个大小申请内存时崩溃。可见opencv对输入的图片像素是有限制的,在调用cvLoadImage之前,可以手动计算一下该值大小,如果超过了最大正整数的值,即2147483648,就会发生截断,造成程序崩溃。

推荐内容
GitHub 加速计划 / opencv31 / opencv
186
14
下载
OpenCV: 开源计算机视觉库
最近提交(Master分支:7 个月前 )
c8e88d89 Specify DLS and UPnP mappings to EPnP in all places for solvePnP* tests #27185 ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [x] There is a reference to the original bug report and related work - [x] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [x] The feature is well documented and sample code can be built with the project CMake 14 小时前
8b4b382f build: fix OpenBLAS detection on Linux 2 天前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐