当前位置:网站首页>ffmpeg AVFrame 转 cv::Mat
ffmpeg AVFrame 转 cv::Mat
2022-07-01 18:45:00 【lcyw】
//AVFrame 转 cv::mat
cv::Mat frame_to_mat(const AVFrame * frame) {
int width = frame->width;
int height = frame->height;
cv::Mat image(height, width, CV_8UC3);
int cvLinesizes[1];
cvLinesizes[0] = image.step1();
if( NULL == _swsContext) {
_swsContext = sws_getContext(width, height,
(AVPixelFormat)frame->format, width, height,
AVPixelFormat::AV_PIX_FMT_BGR24, SWS_FAST_BILINEAR, NULL, NULL, NULL);
}
sws_scale(_swsContext, frame->data,
frame->linesize, 0, height, &image.data, cvLinesizes);
return image;
}
上面函数传入的参数frame中的图像格式,可以是YUV, RGB ,等等,,
经过sws_scale()转换之后,写入cv::Mat 数据区。
还有一种方式 是直接将AVFrame 中的RGB数据赋值给cv::Mat
cv::Mat img;
img = cv::Mat(height, width, CV_8UC3);
img.data = _rgb_frame->data[0];
边栏推荐
猜你喜欢
Bao, que se passe - t - il si le serveur 100 + O & M a mal à la tête? Utilisez le majordome xingyun!
Introduction to relevant processes and functions of wechat official account development
The intelligent epidemic prevention system provides safety guarantee for the resumption of work and production at the construction site
Dom4j parsing XML, XPath retrieving XML
Solution of digital supply chain centralized purchase platform in mechanical equipment industry: optimize resource allocation and realize cost reduction and efficiency increase
MySQL common graphics management tools | dark horse programmers
Case sharing: basic networking configuration of QinQ
Les canaux de culture intensive s'efforcent de développer Fu Xin et Wei Shi jiajie pour organiser une conférence de formation sur les nouveaux produits
Dlib+opencv library for fatigue detection
Lake shore optimag superconducting magnet system om series
随机推荐
EasyGBS网络不稳定情况下重复请求视频拉流问题的优化
axure不显示元件库
智慧防疫系统为建筑工地复工复产提供安全保障
Dom4J解析XML、Xpath检索XML
Introduction to relevant processes and functions of wechat official account development
Solidity - contract structure - error - ^0.8.4 NEW
从零开始学 MySQL —数据库和数据表操作
Dlib+opencv library for fatigue detection
Team up to learn! 14 days of Hongmeng equipment development "learning, practicing and testing" practical camp, free of charge!
商业智能BI开发和报表开发有什么本质区别?
B2B e-commerce platform solution for fresh food industry to improve the standardization and transparency of enterprise transaction process
Collation of open source protocols of open source frameworks commonly used in Web Development
What must be done in graduation season before going to Shanhai
Specification of lumiprobe reactive dye indocyanine green
Bao, que se passe - t - il si le serveur 100 + O & M a mal à la tête? Utilisez le majordome xingyun!
ffmpeg 音频相关命令
Intensive cultivation of channels for joint development Fuxin and Weishi Jiajie held a new product training conference
PMP是被取消了吗??
PostgreSQL varchar[] array type operation
【To .NET】C#集合类源码解析