解决 OpenCV Error: Insufficient memory (Failed to allocate 3221225472 bytes) in cv::OutOfMemoryError
opencv
OpenCV: 开源计算机视觉库
项目地址:https://gitcode.com/gh_mirrors/opencv31/opencv

·
现象:调用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: 开源计算机视觉库
项目地址:https://gitcode.com/gh_mirrors/opencv31/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,就会发生截断,造成程序崩溃。
推荐内容




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 天前
更多推荐
相关推荐
查看更多
opencv

OpenCV: 开源计算机视觉库
opencv

opencv

R bindings for OpenCV
热门开源项目
活动日历
查看更多
直播时间 2025-03-13 18:32:35

全栈自研企业级AI平台:Java核心技术×私有化部署实战
直播时间 2025-03-11 18:35:18

从0到1:Go IoT 开发平台的架构演进与生态蓝图
直播时间 2025-03-05 14:35:37

国产工作流引擎 终结「996」开发困局!
直播时间 2025-02-25 14:38:13

免费开源宝藏 ShopXO,电商系统搭建秘籍大公开!
直播时间 2025-02-18 14:31:04

从数据孤岛到数据智能 - 企业级数据管理利器深度解析
所有评论(0)