当前位置:网站首页>Ffmpeg avframe to cv:: mat
Ffmpeg avframe to cv:: mat
2022-07-01 19:34:00 【lcyw】
//AVFrame turn 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;
}
The parameters passed in by the above function frame Image format in , It can be YUV, RGB , wait ,,
after sws_scale() After the transformation , write in cv::Mat Data area .
There's another way Is directly to the AVFrame Medium RGB The data is assigned to cv::Mat
cv::Mat img;
img = cv::Mat(height, width, CV_8UC3);
img.data = _rgb_frame->data[0];
边栏推荐
- How to solve the problem of splash screen when the main and sub code streams of easygbs are h.265?
- IPv4地址、子网掩码、网关
- 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
- Manufacturing SRM management system supplier all-round closed-loop management, to achieve procurement sourcing and process efficient collaboration
- 采集抖音视频
- The difference between indexof and includes
- 118. 杨辉三角
- 从零开始学 MySQL —数据库和数据表操作
- GB28181之SIP协议
- Werewolf killing strategy: do you think I'm easy to cheat? Who do we believe!
猜你喜欢
Facebook聊单,SaleSmartly有妙招!
How to solve the problem of splash screen when the main and sub code streams of easygbs are h.265?
XML语法、约束
B2B e-commerce platform solution for fresh food industry to improve the standardization and transparency of enterprise transaction process
音视频、编解码相关电子书、小工具,打包奉送!
A brief understanding of white box encryption technology
DTD建模
论文阅读【Learning to Discretely Compose Reasoning Module Networks for Video Captioning】
Chinese and English instructions human soluble advanced glycation end products receptor (sRAGE) ELISA Kit
寶,運維100+服務器很頭疼怎麼辦?用行雲管家!
随机推荐
Solution of digital supply chain centralized purchase platform in mechanical equipment industry: optimize resource allocation and realize cost reduction and efficiency increase
论文阅读【Discriminative Latent Semantic Graph for Video Captioning】
PostgreSQL varchar[] 数组类型操作
241. Different Ways to Add Parentheses
Manufacturing SRM management system supplier all-round closed-loop management, to achieve procurement sourcing and process efficient collaboration
uni-app商品分类
Intensive cultivation of channels for joint development Fuxin and Weishi Jiajie held a new product training conference
【Go ~ 0到1 】 第五天 7月1 类型别名,自定义类型,接口,包与初始化函数
[go ~ 0 to 1] day 4 June 30 defer, structure, method
微信小程序 navigator点击后有阴影 ,去掉navigator阴影效果
从零开始学 MySQL —数据库和数据表操作
[English grammar] Unit1 articles, nouns, pronouns and numerals
118. 杨辉三角
博途V16 获取系统时间转换成字符串
Facebook聊单,SaleSmartly有妙招!
ES6中的代理proxy
Solution of intelligent supply chain management platform in aquatic industry: support the digitalization of enterprise supply chain and improve enterprise management efficiency
线程的并行、并发、生命周期
Shell高级进阶
Contos 7 set up SFTP to create users, user groups, and delete users