• 大小: 40KB
    文件类型: .gz
    金币: 1
    下载: 0 次
    发布日期: 2021-08-25
  • 语言: 其他
  • 标签: mpeg  ts  pes  i帧  

资源简介

支持对ts文件中pat、pmt的分析。 可以获取指定节目的i帧,并保持为yuv或bmp文件。(为什么没有0积分的选项 ???)

资源截图

代码片段和文件信息

#include 
#include 
#include 
#include 

#include “cvshow.h“

using namespace cv;

int cvshow_rgb(uint8_t *rgb_data int32_t rgb_size int32_t width int32_t height int32_t channel char *name)
{
    cv::Mat rgb_mat;

    namedWindow(name WINDOW_AUTOSIZE);

    rgb_mat.create(height width CV_8UC3); /*CV_8UC3 uint8_t RGB3通道*/
    memcpy(rgb_mat.data rgb_data rgb_size*sizeof(uint8_t));

    cv::imshow(name rgb_mat);

    waitKey();
    
    rgb_mat.release();
    destroyWindow(name);

    return 0;
}

评论

共有 条评论