UYVY视频格式转换为avi


本程序是用于将UYVY格式的视频转为仅含有Y通道的.avi格式视频。 在打开.yuv视频前,请先输入视频的宽度,高度以及帧数信息。
资源截图
代码片段和文件信息
#include “StdAfx.h“
#include “CvvImage.h“
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CV_INLINE RECT NormalizeRect( RECT r );
CV_INLINE RECT NormalizeRect( RECT r )
{
int t;
if( r.left > r.right )
{
t = r.left;
r.left = r.right;
r.right = t;
}
if( r.top > r.bottom )
{
t = r.top;
r.top = r.bottom;
r.bottom = t;
}

return r;
}
CV_INLINE CvRect RectToCvRect( RECT sr );
CV_INLINE CvRect RectToCvRect( RECT sr )
{
sr = NormalizeRect( sr );
return cvRect( sr.left sr.top sr.right - sr.left sr.bottom - sr.top );
}
CV_INLINE RECT CvRectToRect( CvRect sr );
CV_INLINE RECT CvRectToRect( CvRect sr )
{
RECT dr;
dr.left = sr.x;
dr.top = sr.y;
dr.right = sr.x + sr.width;
dr.bottom = sr.y + sr.height;

return dr;
}
CV_INLINE IplROI RectToROI( RECT r );
CV_INLINE IplROI RectToROI( RECT r )
{
IplROI roi;
r = NormalizeRect( r );
roi.xOffset = r.left;
roi.yOffset = r.top;
roi.width = r.right - r.left;
roi.height = r.bottom - r.top;
roi.coi = 0;

return roi;
}
void  FillBitmapInfo( BITMAPINFO* bmi int width int height int bpp int origin )
{
assert( bmi && width >= 0 && height >= 0 && (bpp == 8 || bpp == 24 || bpp == 32));

BITMAPINFOHEADER* bmih = &(bmi->bmiHeader);

memset( bmih 0 sizeof(*bmih));
bmih->biSize = sizeof(BITMAPINFOHEADER);
bmih->biWidth = width;
bmih->biHeight = origin ? abs(height) : -abs(height);
bmih->biPlanes = 1;
bmih->biBitCount = (unsigned short)bpp;
bmih->biCompression = BI_RGB;
if( bpp == 8 )
{
RGBQUAD* palette = bmi->bmiColors;
int i;
for( i = 0; i < 256; i++ )
{
palette[i].rgbBlue = palette[i].rgbGreen = palette[i].rgbRed = (BYTE)i;
palette[i].rgbReserved = 0;
}
}
}
CvvImage::CvvImage()
{
m_img = 0;
}
void CvvImage::Destroy()
{
cvReleaseImage( &m_img );
}
CvvImage::~CvvImage()
{
Destroy();
}
bool  CvvImage::Create( int w int h int bpp int origin )
{
const unsigned max_img_size = 10000;

if( (bpp != 8 && bpp != 24 && bpp != 32) ||
(unsigned)w >=  max_img_size || (unsigned)h >= max_img_size ||
(origin != IPL_ORIGIN_TL && origin != IPL_ORIGIN_BL))
{
assert(0); // most probably it is a programming error
return false;
}
if( !m_img || Bpp() != bpp || m_img->width != w || m_img->height != h )
{
if( m_img && m_img->nSize == sizeof(IplImage))
Destroy();
/* prepare IPL header */
m_img = cvCreateImage( cvSize( w h ) IPL_DEPTH_8U bpp/8 );
}
if( m_img )
m_img->origin = origin == 0 ? IPL_ORIGIN_TL : IPL_ORIGIN_BL;
return m_img != 0;
}
void  CvvImage::CopyOf( CvvImage& image int desired_color )
{
IplImage* img = image.GetImage();
if( img )
{
CopyOf( img desired_color );
}
}
#define HG_IS_IMAGE(img)
((img) != 0 && ((const IplImage*)(img))->nSize == sizeof(IplImage) &&
((IplImage*)img)->imageDat

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件   90112000  2016-08-17 13:53  uyvy2aviipchuyvy2avimfc-2584ae98uyvy2avimfc-ae6e59ab.ipch

     文件        114  2016-08-17 14:03  uyvy2aviREADME.txt

     文件    3548672  2016-08-17 13:54  uyvy2aviReleaseuyvy2avimfc.exe

     文件   21072896  2016-08-17 13:54  uyvy2aviReleaseuyvy2avimfc.pdb

     文件       6547  2013-03-19 19:03  uyvy2aviuyvy2avimfcCvvImage.cpp

     文件       1925  2013-03-19 18:58  uyvy2aviuyvy2avimfcCvvImage.h

     文件       4112  2016-08-04 19:25  uyvy2aviuyvy2avimfcReadMe.txt

     文件       3254  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleasecl.command.1.tlog

     文件      90784  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaseCL.read.1.tlog

     文件       2260  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaseCL.write.1.tlog

     文件    1292198  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaseCvvImage.obj

     文件          2  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaselink-cvtres.read.1.tlog

     文件          2  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaselink-cvtres.write.1.tlog

     文件          2  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaselink-mt.read.1.tlog

     文件          2  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaselink-mt.write.1.tlog

     文件          2  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaselink-rc.read.1.tlog

     文件          2  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaselink-rc.write.1.tlog

     文件       2438  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaselink.command.1.tlog

     文件       7862  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaselink.read.1.tlog

     文件       1002  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaselink.write.1.tlog

     文件        578  2016-08-17 13:54  uyvy2aviuyvy2avimfcRelease
c.command.1.tlog

     文件      94366  2016-08-17 13:54  uyvy2aviuyvy2avimfcRelease
c.read.1.tlog

     文件        290  2016-08-17 13:54  uyvy2aviuyvy2avimfcRelease
c.write.1.tlog

     文件    5450166  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleasestdafx.obj

     文件       2944  2016-08-17 13:53  uyvy2aviuyvy2avimfcReleaseuyvy2avimfc.Build.CppClean.log

     文件         88  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaseuyvy2avimfc.lastbuildstate

     文件       2607  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaseuyvy2avimfc.log

     文件    1299167  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaseuyvy2avimfc.obj

     文件   34668544  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaseuyvy2avimfc.pch

     文件    1432752  2016-08-17 13:54  uyvy2aviuyvy2avimfcReleaseuyvy2avimfc.res

............此处省略28个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)