- 浏览: 1049266 次
文章分类
最新评论
-
cjh_android:
我想你是对的,至少对于现实是对的,不过对于技术岗位竞争越来越激 ...
程序员的思考--终于确定了自己的技术发展方向 -
dongbiying:
现在情况如何 。。
创业,不能兼职 -
jackyrong:
ie 9 下时,老显示关闭窗口提示,有办法去掉么,就是关闭掉那 ...
jquery右下角弹窗效果 -
lmaxjj:
加点班如果都称得上是累,只能说明还没体会到真正的生活。。
IT男的进化论 -
馨雨轩:
IT男要进化需要先穿越
IT男的进化论
RGB 24和YUY2相互转换
YUY2经常用于电视制式以及许多摄像头的输出格式.而我们在处理时经常需要将其转化为RGB进行处理,这里简单介绍下YUY2(YUV)与RGB之间相互转化的关系:
http://msdn2.microsoft.com/en-us/library/ms893078.aspx
YUY2(YUV) To RGB:
C = Y - 16
D = U - 128
E = V - 128
R = clip(( 298 * C + 409 * E + 128) >> 8)
G = clip(( 298 * C - 100 * D - 208 * E + 128) >> 8)
B = clip(( 298 * C + 516 * D + 128) >> 8)
其中 clip()为限制函数,将其取值限制在0-255之间.
RGB To YUY2(YUV):
Y = ( ( 66 * R + 129 * G + 25 * B + 128) >> 8) + 16 U = ( ( -38 * R - 74 * G + 112 * B + 128) >> 8) + 128 V = ( ( 112 * R - 94 * G - 18 * B + 128) >> 8) + 128 上述两个公式在代码中的 int YUV2RGB(void* pYUV, void* pRGB, int width, int height, bool alphaYUV, bool alphaRGB); int RGB2YUV(void* pRGB, void* pYUVX, int width, int height, bool alphaYUV, bool alphaRGB); 函数中转换。 在诸如摄像头的数据获取中,我们往往需要直接在YUY2(YUV)空间上进行一些图象处理,我们希望能够在YUY2 (YUV)进行一些RGB上可以做到的处理。这里已blending为例,将两张带有透明度的YUY2(YUV)图片进行叠加, 以达到在RGB空间进行图像合成的效果。 RGB空间进行图像叠加,通常背景(BG)是不透明的,而前景(FG)是带有透明度的。在RGB空间,可以简单表示为: Rdest = Rfg*alpha + Rbg*(1-alpha); Gdest = Gfg*alpha + Gbg*(1-alpha); Bdest = Bfg*alpha + Bbg*(1-alpha); // Rdest、Gdest、Bdest 为最终合成后的像素值 考虑到 Y = ( ( 66 * R + 129 * G + 25 * B + 128) >> 8) + 16 U = ( ( -38 * R - 74 * G + 112 * B + 128) >> 8) + 128 V = ( ( 112 * R - 94 * G - 18 * B + 128) >> 8) + 128 我们可以推导出 (Ydest-16)<<8 = ((Yfg-16)<<8)*alpha + ((Ybg-16)<<8)*(1-alpha); (Udest-128)<<8 = ((Ufg-128)<<8)*alpha + ((Ubg-128)<<8)*(1-alpha); (Vdest-128)<<8 = ((Vfg-128)<<8)*alpha + ((Vbg-128)<<8)*(1-alpha); 从而可以得到 Ydest = (Yfg-16)*alpha + (Ybg-16)*(1-alpha) + 16; Udest = (Ufg-128)*alpha + (Ubg-128)*(1-alpha) + 128; Vdest = (Vfg-128)*alpha + (Vbg-128)*(1-alpha) + 128; 这个叠加过程在函数 int YUVBlending(void* pBGYUV, void* pFGYUV, int width, int height, bool alphaBG, bool alphaFG) 中实现。 由于本文针对摄像头采集所得的数据进行处理,因此数据为YUY2格式,即4个字节来表示两个像素点的YUV信息, 排列为Y1 U1 Y2 V2, 对于像素点1为(Y1, U1, V1),像素点2为(Y2, U1, V1)。即两个像素点共用U、V信息。 这里假设带有alpha透明度的YUV格式用6个字节来表示两个像素点的YUV以及alpha信息,排列为 Y1 U1 Y2 V1 alpha1 alpha2 其中像素点1为(Y1, U1, V1, alpha1),像素点2为(Y2, U1, V1, alpha2)。其中alpha为对应点的透明度信息。 而带有alpha透明度RGB格式的图片,假设为32bits的BMP图片,每个像素点用4bytes来表示,分别为B G R alpha信息。 上述函数的具体实现为:
- //////////////////////////////////////////////////////////////////////////
- //YUV2RGB
- //pYUVpointtotheYUVdata
- //pRGBpointtotheRGBdata
- //widthwidthofthepicture
- //heightheightofthepicture
- //alphaYUVisthereanalphachannelinYUV
- //alphaRGBisthereanalphachannelinRGB
- //////////////////////////////////////////////////////////////////////////
- intYUV2RGB(void*pYUV,void*pRGB,intwidth,intheight,boolalphaYUV,boolalphaRGB)
- {
- if(NULL==pYUV)
- {
- return-1;
- }
- unsignedchar*pYUVData=(unsignedchar*)pYUV;
- unsignedchar*pRGBData=(unsignedchar*)pRGB;
- if(NULL==pRGBData)
- {
- if(alphaRGB)
- {
- pRGBData=newunsignedchar[width*height*4];
- }
- else
- pRGBData=newunsignedchar[width*height*3];
- }
- intY1,U1,V1,Y2,alpha1,alpha2,R1,G1,B1,R2,G2,B2;
- intC1,D1,E1,C2;
- if(alphaRGB)
- {
- if(alphaYUV)
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- Y1=*(pYUVData+i*width*3+j*6);
- U1=*(pYUVData+i*width*3+j*6+1);
- Y2=*(pYUVData+i*width*3+j*6+2);
- V1=*(pYUVData+i*width*3+j*6+3);
- alpha1=*(pYUVData+i*width*3+j*6+4);
- alpha2=*(pYUVData+i*width*3+j*6+5);
- C1=Y1-16;
- C2=Y2-16;
- D1=U1-128;
- E1=V1-128;
- R1=((298*C1+409*E1+128)>>8>255?255:(298*C1+409*E1+128)>>8);
- G1=((298*C1-100*D1-208*E1+128)>>8>255?255:(298*C1-100*D1-208*E1+128)>>8);
- B1=((298*C1+516*D1+128)>>8>255?255:(298*C1+516*D1+128)>>8);
- R2=((298*C2+409*E1+128)>>8>255?255:(298*C2+409*E1+128)>>8);
- G2=((298*C2-100*D1-208*E1+128)>>8>255?255:(298*C2-100*D1-208*E1+128)>>8);
- B2=((298*C2+516*D1+128)>>8>255?255:(298*C2+516*D1+128)>>8);
- *(pRGBData+(height-i-1)*width*4+j*8+2)=R1<0?0:R1;
- *(pRGBData+(height-i-1)*width*4+j*8+1)=G1<0?0:G1;
- *(pRGBData+(height-i-1)*width*4+j*8)=B1<0?0:B1;
- *(pRGBData+(height-i-1)*width*4+j*8+3)=alpha1;
- *(pRGBData+(height-i-1)*width*4+j*8+6)=R2<0?0:R2;
- *(pRGBData+(height-i-1)*width*4+j*8+5)=G2<0?0:G2;
- *(pRGBData+(height-i-1)*width*4+j*8+4)=B2<0?0:B2;
- *(pRGBData+(height-i-1)*width*4+j*8+7)=alpha2;
- }
- }
- }
- else
- {
- intalpha=255;
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- Y1=*(pYUVData+i*width*2+j*4);
- U1=*(pYUVData+i*width*2+j*4+1);
- Y2=*(pYUVData+i*width*2+j*4+2);
- V1=*(pYUVData+i*width*2+j*4+3);
- C1=Y1-16;
- C2=Y2-16;
- D1=U1-128;
- E1=V1-128;
- R1=((298*C1+409*E1+128)>>8>255?255:(298*C1+409*E1+128)>>8);
- G1=((298*C1-100*D1-208*E1+128)>>8>255?255:(298*C1-100*D1-208*E1+128)>>8);
- B1=((298*C1+516*D1+128)>>8>255?255:(298*C1+516*D1+128)>>8);
- R2=((298*C2+409*E1+128)>>8>255?255:(298*C2+409*E1+128)>>8);
- G2=((298*C2-100*D1-208*E1+128)>>8>255?255:(298*C2-100*D1-208*E1+128)>>8);
- B2=((298*C2+516*D1+128)>>8>255?255:(298*C2+516*D1+128)>>8);
- *(pRGBData+(height-i-1)*width*4+j*8+2)=R1<0?0:R1;
- *(pRGBData+(height-i-1)*width*4+j*8+1)=G1<0?0:G1;
- *(pRGBData+(height-i-1)*width*4+j*8)=B1<0?0:B1;
- *(pRGBData+(height-i-1)*width*4+j*8+3)=alpha;
- *(pRGBData+(height-i-1)*width*4+j*8+6)=R2<0?0:R2;
- *(pRGBData+(height-i-1)*width*4+j*8+5)=G2<0?0:G2;
- *(pRGBData+(height-i-1)*width*4+j*8+4)=B2<0?0:B2;
- *(pRGBData+(height-i-1)*width*4+j*8+7)=alpha;
- }
- }
- }
- }
- else
- {
- if(alphaYUV)
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- Y1=*(pYUVData+i*width*3+j*4);
- U1=*(pYUVData+i*width*3+j*4+1);
- Y2=*(pYUVData+i*width*3+j*4+2);
- V1=*(pYUVData+i*width*3+j*4+3);
- C1=Y1-16;
- C2=Y2-16;
- D1=U1-128;
- E1=V1-128;
- R1=((298*C1+409*E1+128)>>8>255?255:(298*C1+409*E1+128)>>8);
- G1=((298*C1-100*D1-208*E1+128)>>8>255?255:(298*C1-100*D1-208*E1+128)>>8);
- B1=((298*C1+516*D1+128)>>8>255?255:(298*C1+516*D1+128)>>8);
- R2=((298*C2+409*E1+128)>>8>255?255:(298*C2+409*E1+128)>>8);
- G2=((298*C2-100*D1-208*E1+128)>>8>255?255:(298*C2-100*D1-208*E1+128)>>8);
- B2=((298*C2+516*D1+128)>>8>255?255:(298*C2+516*D1+128)>>8);
- *(pRGBData+(height-i-1)*width*3+j*6+2)=R1<0?0:R1;
- *(pRGBData+(height-i-1)*width*3+j*6+1)=G1<0?0:G1;
- *(pRGBData+(height-i-1)*width*3+j*6)=B1<0?0:B1;
- *(pRGBData+(height-i-1)*width*3+j*6+5)=R2<0?0:R2;
- *(pRGBData+(height-i-1)*width*3+j*6+4)=G2<0?0:G2;
- *(pRGBData+(height-i-1)*width*3+j*6+3)=B2<0?0:B2;
- }
- }
- }
- else
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- Y1=*(pYUVData+i*width*2+j*4);
- U1=*(pYUVData+i*width*2+j*4+1);
- Y2=*(pYUVData+i*width*2+j*4+2);
- V1=*(pYUVData+i*width*2+j*4+3);
- C1=Y1-16;
- C2=Y2-16;
- D1=U1-128;
- E1=V1-128;
- R1=((298*C1+409*E1+128)>>8>255?255:(298*C1+409*E1+128)>>8);
- G1=((298*C1-100*D1-208*E1+128)>>8>255?255:(298*C1-100*D1-208*E1+128)>>8);
- B1=((298*C1+516*D1+128)>>8>255?255:(298*C1+516*D1+128)>>8);
- R2=((298*C2+409*E1+128)>>8>255?255:(298*C2+409*E1+128)>>8);
- G2=((298*C2-100*D1-208*E1+128)>>8>255?255:(298*C2-100*D1-208*E1+128)>>8);
- B2=((298*C2+516*D1+128)>>8>255?255:(298*C2+516*D1+128)>>8);
- *(pRGBData+(height-i-1)*width*3+j*6+2)=R1<0?0:R1;
- *(pRGBData+(height-i-1)*width*3+j*6+1)=G1<0?0:G1;
- *(pRGBData+(height-i-1)*width*3+j*6)=B1<0?0:B1;
- *(pRGBData+(height-i-1)*width*3+j*6+5)=R2<0?0:R2;
- *(pRGBData+(height-i-1)*width*3+j*6+4)=G2<0?0:G2;
- *(pRGBData+(height-i-1)*width*3+j*6+3)=B2<0?0:B2;
- }
- }
- }
- }
- return0;
- }
- //////////////////////////////////////////////////////////////////////////
- //RGB2YUV
- //pRGBpointtotheRGBdata
- //pYUVpointtotheYUVdata
- //widthwidthofthepicture
- //heightheightofthepicture
- //alphaYUVisthereanalphachannelinYUV
- //alphaRGBisthereanalphachannelinRGB
- //////////////////////////////////////////////////////////////////////////
- intRGB2YUV(void*pRGB,void*pYUV,intwidth,intheight,boolalphaYUV,boolalphaRGB)
- {
- if(NULL==pRGB)
- {
- return-1;
- }
- unsignedchar*pRGBData=(unsignedchar*)pRGB;
- unsignedchar*pYUVData=(unsignedchar*)pYUV;
- if(NULL==pYUVData)
- {
- if(alphaYUV)
- {
- pYUVData=newunsignedchar[width*height*3];
- }
- else
- pYUVData=newunsignedchar[width*height*2];
- }
- intR1,G1,B1,R2,G2,B2,Y1,U1,Y2,V1;
- intalpha1,alpha2;
- if(alphaYUV)
- {
- if(alphaRGB)
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- B1=*(pRGBData+(height-i-1)*width*4+j*8);
- G1=*(pRGBData+(height-i-1)*width*4+j*8+1);
- R1=*(pRGBData+(height-i-1)*width*4+j*8+2);
- alpha1=*(pRGBData+(height-i-1)*width*4+j*8+3);
- B2=*(pRGBData+(height-i-1)*width*4+j*8+4);
- G2=*(pRGBData+(height-i-1)*width*4+j*8+5);
- R2=*(pRGBData+(height-i-1)*width*4+j*8+6);
- alpha2=*(pRGBData+(height-i-1)*width*4+j*8+7);
- Y1=(((66*R1+129*G1+25*B1+128)>>8)+16)>255?255:(((66*R1+129*G1+25*B1+128)>>8)+16);
- U1=((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128)>255?255:((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128);
- Y2=(((66*R2+129*G2+25*B2+128)>>8)+16)>255?255:((66*R2+129*G2+25*B2+128)>>8)+16;
- V1=((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128)>255?255:((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128);
- *(pYUVData+i*width*3+j*6)=Y1;
- *(pYUVData+i*width*3+j*6+1)=U1;
- *(pYUVData+i*width*3+j*6+2)=Y2;
- *(pYUVData+i*width*3+j*6+3)=V1;
- *(pYUVData+i*width*3+j*6+4)=alpha1;
- *(pYUVData+i*width*3+j*6+5)=alpha2;
- }
- }
- }
- else
- {
- unsignedcharalpha=255;
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- B1=*(pRGBData+(height-i-1)*width*3+j*6);
- G1=*(pRGBData+(height-i-1)*width*3+j*6+1);
- R1=*(pRGBData+(height-i-1)*width*3+j*6+2);
- B2=*(pRGBData+(height-i-1)*width*3+j*6+3);
- G2=*(pRGBData+(height-i-1)*width*3+j*6+4);
- R2=*(pRGBData+(height-i-1)*width*3+j*6+5);
- Y1=((66*R1+129*G1+25*B1+128)>>8)+16;
- U1=((-38*R1-74*G1+112*B1+128)>>8+(-38*R2-74*G2+112*B2+128)>>8)/2+128;
- Y2=((66*R2+129*G2+25*B2+128)>>8)+16;
- V1=((112*R1-94*G1-18*B1+128)>>8+(112*R2-94*G2-18*B2+128)>>8)/2+128;
- Y1=(((66*R1+129*G1+25*B1+128)>>8)+16)>255?255:(((66*R1+129*G1+25*B1+128)>>8)+16);
- U1=((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128)>255?255:((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128);
- Y2=(((66*R2+129*G2+25*B2+128)>>8)+16)>255?255:((66*R2+129*G2+25*B2+128)>>8)+16;
- V1=((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128)>255?255:((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128);
- *(pYUVData+i*width*3+j*6)=Y1;
- *(pYUVData+i*width*3+j*6+1)=U1;
- *(pYUVData+i*width*3+j*6+2)=Y2;
- *(pYUVData+i*width*3+j*6+3)=V1;
- *(pYUVData+i*width*3+j*6+4)=alpha;
- *(pYUVData+i*width*3+j*6+5)=alpha;
- }
- }
- }
- }
- else
- {
- if(alphaRGB)
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- B1=*(pRGBData+(height-i-1)*width*4+j*8);
- G1=*(pRGBData+(height-i-1)*width*4+j*8+1);
- R1=*(pRGBData+(height-i-1)*width*4+j*8+2);
- B2=*(pRGBData+(height-i-1)*width*4+j*8+4);
- G2=*(pRGBData+(height-i-1)*width*4+j*8+5);
- R2=*(pRGBData+(height-i-1)*width*4+j*8+6);
- Y1=(((66*R1+129*G1+25*B1+128)>>8)+16)>255?255:(((66*R1+129*G1+25*B1+128)>>8)+16);
- U1=((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128)>255?255:((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128);
- Y2=(((66*R2+129*G2+25*B2+128)>>8)+16)>255?255:((66*R2+129*G2+25*B2+128)>>8)+16;
- V1=((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128)>255?255:((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128);
- *(pYUVData+i*width*2+j*4)=Y1;
- *(pYUVData+i*width*2+j*4+1)=U1;
- *(pYUVData+i*width*2+j*4+2)=Y2;
- *(pYUVData+i*width*2+j*4+3)=V1;
- }
- }
- }
- else
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- B1=*(pRGBData+(height-i-1)*width*3+j*6);
- G1=*(pRGBData+(height-i-1)*width*3+j*6+1);
- R1=*(pRGBData+(height-i-1)*width*3+j*6+2);
- B2=*(pRGBData+(height-i-1)*width*3+j*6+3);
- G2=*(pRGBData+(height-i-1)*width*3+j*6+4);
- R2=*(pRGBData+(height-i-1)*width*3+j*6+5);
- Y1=(((66*R1+129*G1+25*B1+128)>>8)+16)>255?255:(((66*R1+129*G1+25*B1+128)>>8)+16);
- U1=((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128)>255?255:((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128);
- Y2=(((66*R2+129*G2+25*B2+128)>>8)+16)>255?255:((66*R2+129*G2+25*B2+128)>>8)+16;
- V1=((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128)>255?255:((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128);
- *(pYUVData+i*width*2+j*4)=Y1;
- *(pYUVData+i*width*2+j*4+1)=U1;
- *(pYUVData+i*width*2+j*4+2)=Y2;
- *(pYUVData+i*width*2+j*4+3)=V1;
- }
- }
- }
- }
- return0;
- }
- //////////////////////////////////////////////////////////////////////////
- //pGBYUVpointtothebackgroundYUVdata
- //pFGYUVpointtotheforegroundYUVdata
- //widthwidthofthepicture
- //heightheightofthepicture
- //alphaBGisthereanalphachannelinbackgroundYUVdata
- //alphaFGisthereanalphachannelinfourgroundYUVdata
- //////////////////////////////////////////////////////////////////////////
- intYUVBlending(void*pBGYUV,void*pFGYUV,intwidth,intheight,boolalphaBG,boolalphaFG)
- {
- if(NULL==pBGYUV||NULL==pFGYUV)
- {
- return-1;
- }
- unsignedchar*pBGData=(unsignedchar*)pBGYUV;
- unsignedchar*pFGData=(unsignedchar*)pFGYUV;
- if(!alphaFG)
- {
- if(!alphaBG)
- {
- memcpy(pBGData,pFGData,width*height*2);
- }
- else
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- *(pBGData+i*width*2+j*4)=*(pFGData+i*width*2+j*4);
- *(pBGData+i*width*2+j*4+1)=*(pFGData+i*width*2+j*4+1);
- *(pBGData+i*width*2+j*4+2)=*(pFGData+i*width*2+j*4+2);
- *(pBGData+i*width*2+j*4+3)=*(pFGData+i*width*2+j*4+3);
- }
- }
- }
- }
- intY11,U11,V11,Y12,Y21,U21,V21,Y22;
- intalpha1,alpha2;
- if(!alphaBG)
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- Y11=*(pBGData+i*width*2+j*4);
- U11=*(pBGData+i*width*2+j*4+1);
- Y12=*(pBGData+i*width*2+j*4+2);
- V11=*(pBGData+i*width*2+j*4+3);
- Y21=*(pFGData+i*width*3+j*6);
- U21=*(pFGData+i*width*3+j*6+1);
- Y22=*(pFGData+i*width*3+j*6+2);
- V21=*(pFGData+i*width*3+j*6+3);
- alpha1=*(pFGData+i*width*3+j*6+4);
- alpha2=*(pFGData+i*width*3+j*6+5);
- *(pBGData+i*width*2+j*4)=(Y21-16)*alpha1/255+(Y11-16)*(255-alpha1)/255+16;
- *(pBGData+i*width*2+j*4+1)=((U21-128)*alpha1/255+(U11-128)*(255-alpha1)/255+(U21-128)*alpha2/255+(U11-128)*(255-alpha2)/255)/2+128;
- *(pBGData+i*width*2+j*4+3)=((V21-128)*alpha1/255+(V11-128)*(255-alpha1)/255+(V21-128)*alpha2/255+(V11-128)*(255-alpha2)/255)/2+128;
- *(pBGData+i*width*2+j*4+2)=(Y22-16)*alpha2/255+(Y12-16)*(255-alpha2)/255+16;
- }
- }
- }
- else
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- Y11=*(pBGData+i*width*3+j*6);
- U11=*(pBGData+i*width*3+j*6+1);
- Y12=*(pBGData+i*width*3+j*6+2);
- V11=*(pBGData+i*width*3+j*6+3);
- Y21=*(pFGData+i*width*3+j*6);
- U21=*(pFGData+i*width*3+j*6+1);
- Y22=*(pFGData+i*width*3+j*6+2);
- V21=*(pFGData+i*width*3+j*6+3);
- alpha1=*(pFGData+i*width*3+j*6+4);
- alpha2=*(pFGData+i*width*3+j*6+5);
- *(pBGData+i*width*3+j*6)=(Y21-16)*alpha1/255+(Y11-16)*(255-alpha1)/255+16;
- *(pBGData+i*width*3+j*6+1)=((U21-128)*alpha1/255+(U11-128)*(255-alpha1)/255+(U21-128)*alpha2/255+(U11-128)*(255-alpha2)/255)/2+128;
- *(pBGData+i*width*3+j*6+3)=((V21-128)*alpha1/255+(V11-128)*(255-alpha1)/255+(V21-128)*alpha2/255+(V11-128)*(255-alpha2)/255)/2+128;
- *(pBGData+i*width*3+j*6+2)=(Y22-16)*alpha2/255+(Y12-16)*(255-alpha2)/255+16;
- }
- }
- }
- return0;
- }
经测试,功能已经实现,如有错误或者不妥的地方,恳请指出。 mosesyuan at gmail dot com[c-sharp] view plaincopyprint?
- //////////////////////////////////////////////////////////////////////////
- //YUV2RGB
- //pYUVpointtotheYUVdata
- //pRGBpointtotheRGBdata
- //widthwidthofthepicture
- //heightheightofthepicture
- //alphaYUVisthereanalphachannelinYUV
- //alphaRGBisthereanalphachannelinRGB
- //////////////////////////////////////////////////////////////////////////
- intYUV2RGB(void*pYUV,void*pRGB,intwidth,intheight,boolalphaYUV,boolalphaRGB)
- {
- if(NULL==pYUV)
- {
- return-1;
- }
- unsignedchar*pYUVData=(unsignedchar*)pYUV;
- unsignedchar*pRGBData=(unsignedchar*)pRGB;
- if(NULL==pRGBData)
- {
- if(alphaRGB)
- {
- pRGBData=newunsignedchar[width*height*4];
- }
- else
- pRGBData=newunsignedchar[width*height*3];
- }
- intY1,U1,V1,Y2,alpha1,alpha2,R1,G1,B1,R2,G2,B2;
- intC1,D1,E1,C2;
- if(alphaRGB)
- {
- if(alphaYUV)
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- Y1=*(pYUVData+i*width*3+j*6);
- U1=*(pYUVData+i*width*3+j*6+1);
- Y2=*(pYUVData+i*width*3+j*6+2);
- V1=*(pYUVData+i*width*3+j*6+3);
- alpha1=*(pYUVData+i*width*3+j*6+4);
- alpha2=*(pYUVData+i*width*3+j*6+5);
- C1=Y1-16;
- C2=Y2-16;
- D1=U1-128;
- E1=V1-128;
- R1=((298*C1+409*E1+128)>>8>255?255:(298*C1+409*E1+128)>>8);
- G1=((298*C1-100*D1-208*E1+128)>>8>255?255:(298*C1-100*D1-208*E1+128)>>8);
- B1=((298*C1+516*D1+128)>>8>255?255:(298*C1+516*D1+128)>>8);
- R2=((298*C2+409*E1+128)>>8>255?255:(298*C2+409*E1+128)>>8);
- G2=((298*C2-100*D1-208*E1+128)>>8>255?255:(298*C2-100*D1-208*E1+128)>>8);
- B2=((298*C2+516*D1+128)>>8>255?255:(298*C2+516*D1+128)>>8);
- *(pRGBData+(height-i-1)*width*4+j*8+2)=R1<0?0:R1;
- *(pRGBData+(height-i-1)*width*4+j*8+1)=G1<0?0:G1;
- *(pRGBData+(height-i-1)*width*4+j*8)=B1<0?0:B1;
- *(pRGBData+(height-i-1)*width*4+j*8+3)=alpha1;
- *(pRGBData+(height-i-1)*width*4+j*8+6)=R2<0?0:R2;
- *(pRGBData+(height-i-1)*width*4+j*8+5)=G2<0?0:G2;
- *(pRGBData+(height-i-1)*width*4+j*8+4)=B2<0?0:B2;
- *(pRGBData+(height-i-1)*width*4+j*8+7)=alpha2;
- }
- }
- }
- else
- {
- intalpha=255;
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- Y1=*(pYUVData+i*width*2+j*4);
- U1=*(pYUVData+i*width*2+j*4+1);
- Y2=*(pYUVData+i*width*2+j*4+2);
- V1=*(pYUVData+i*width*2+j*4+3);
- C1=Y1-16;
- C2=Y2-16;
- D1=U1-128;
- E1=V1-128;
- R1=((298*C1+409*E1+128)>>8>255?255:(298*C1+409*E1+128)>>8);
- G1=((298*C1-100*D1-208*E1+128)>>8>255?255:(298*C1-100*D1-208*E1+128)>>8);
- B1=((298*C1+516*D1+128)>>8>255?255:(298*C1+516*D1+128)>>8);
- R2=((298*C2+409*E1+128)>>8>255?255:(298*C2+409*E1+128)>>8);
- G2=((298*C2-100*D1-208*E1+128)>>8>255?255:(298*C2-100*D1-208*E1+128)>>8);
- B2=((298*C2+516*D1+128)>>8>255?255:(298*C2+516*D1+128)>>8);
- *(pRGBData+(height-i-1)*width*4+j*8+2)=R1<0?0:R1;
- *(pRGBData+(height-i-1)*width*4+j*8+1)=G1<0?0:G1;
- *(pRGBData+(height-i-1)*width*4+j*8)=B1<0?0:B1;
- *(pRGBData+(height-i-1)*width*4+j*8+3)=alpha;
- *(pRGBData+(height-i-1)*width*4+j*8+6)=R2<0?0:R2;
- *(pRGBData+(height-i-1)*width*4+j*8+5)=G2<0?0:G2;
- *(pRGBData+(height-i-1)*width*4+j*8+4)=B2<0?0:B2;
- *(pRGBData+(height-i-1)*width*4+j*8+7)=alpha;
- }
- }
- }
- }
- else
- {
- if(alphaYUV)
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- Y1=*(pYUVData+i*width*3+j*4);
- U1=*(pYUVData+i*width*3+j*4+1);
- Y2=*(pYUVData+i*width*3+j*4+2);
- V1=*(pYUVData+i*width*3+j*4+3);
- C1=Y1-16;
- C2=Y2-16;
- D1=U1-128;
- E1=V1-128;
- R1=((298*C1+409*E1+128)>>8>255?255:(298*C1+409*E1+128)>>8);
- G1=((298*C1-100*D1-208*E1+128)>>8>255?255:(298*C1-100*D1-208*E1+128)>>8);
- B1=((298*C1+516*D1+128)>>8>255?255:(298*C1+516*D1+128)>>8);
- R2=((298*C2+409*E1+128)>>8>255?255:(298*C2+409*E1+128)>>8);
- G2=((298*C2-100*D1-208*E1+128)>>8>255?255:(298*C2-100*D1-208*E1+128)>>8);
- B2=((298*C2+516*D1+128)>>8>255?255:(298*C2+516*D1+128)>>8);
- *(pRGBData+(height-i-1)*width*3+j*6+2)=R1<0?0:R1;
- *(pRGBData+(height-i-1)*width*3+j*6+1)=G1<0?0:G1;
- *(pRGBData+(height-i-1)*width*3+j*6)=B1<0?0:B1;
- *(pRGBData+(height-i-1)*width*3+j*6+5)=R2<0?0:R2;
- *(pRGBData+(height-i-1)*width*3+j*6+4)=G2<0?0:G2;
- *(pRGBData+(height-i-1)*width*3+j*6+3)=B2<0?0:B2;
- }
- }
- }
- else
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- Y1=*(pYUVData+i*width*2+j*4);
- U1=*(pYUVData+i*width*2+j*4+1);
- Y2=*(pYUVData+i*width*2+j*4+2);
- V1=*(pYUVData+i*width*2+j*4+3);
- C1=Y1-16;
- C2=Y2-16;
- D1=U1-128;
- E1=V1-128;
- R1=((298*C1+409*E1+128)>>8>255?255:(298*C1+409*E1+128)>>8);
- G1=((298*C1-100*D1-208*E1+128)>>8>255?255:(298*C1-100*D1-208*E1+128)>>8);
- B1=((298*C1+516*D1+128)>>8>255?255:(298*C1+516*D1+128)>>8);
- R2=((298*C2+409*E1+128)>>8>255?255:(298*C2+409*E1+128)>>8);
- G2=((298*C2-100*D1-208*E1+128)>>8>255?255:(298*C2-100*D1-208*E1+128)>>8);
- B2=((298*C2+516*D1+128)>>8>255?255:(298*C2+516*D1+128)>>8);
- *(pRGBData+(height-i-1)*width*3+j*6+2)=R1<0?0:R1;
- *(pRGBData+(height-i-1)*width*3+j*6+1)=G1<0?0:G1;
- *(pRGBData+(height-i-1)*width*3+j*6)=B1<0?0:B1;
- *(pRGBData+(height-i-1)*width*3+j*6+5)=R2<0?0:R2;
- *(pRGBData+(height-i-1)*width*3+j*6+4)=G2<0?0:G2;
- *(pRGBData+(height-i-1)*width*3+j*6+3)=B2<0?0:B2;
- }
- }
- }
- }
- return0;
- }
- //////////////////////////////////////////////////////////////////////////
- //RGB2YUV
- //pRGBpointtotheRGBdata
- //pYUVpointtotheYUVdata
- //widthwidthofthepicture
- //heightheightofthepicture
- //alphaYUVisthereanalphachannelinYUV
- //alphaRGBisthereanalphachannelinRGB
- //////////////////////////////////////////////////////////////////////////
- intRGB2YUV(void*pRGB,void*pYUV,intwidth,intheight,boolalphaYUV,boolalphaRGB)
- {
- if(NULL==pRGB)
- {
- return-1;
- }
- unsignedchar*pRGBData=(unsignedchar*)pRGB;
- unsignedchar*pYUVData=(unsignedchar*)pYUV;
- if(NULL==pYUVData)
- {
- if(alphaYUV)
- {
- pYUVData=newunsignedchar[width*height*3];
- }
- else
- pYUVData=newunsignedchar[width*height*2];
- }
- intR1,G1,B1,R2,G2,B2,Y1,U1,Y2,V1;
- intalpha1,alpha2;
- if(alphaYUV)
- {
- if(alphaRGB)
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- B1=*(pRGBData+(height-i-1)*width*4+j*8);
- G1=*(pRGBData+(height-i-1)*width*4+j*8+1);
- R1=*(pRGBData+(height-i-1)*width*4+j*8+2);
- alpha1=*(pRGBData+(height-i-1)*width*4+j*8+3);
- B2=*(pRGBData+(height-i-1)*width*4+j*8+4);
- G2=*(pRGBData+(height-i-1)*width*4+j*8+5);
- R2=*(pRGBData+(height-i-1)*width*4+j*8+6);
- alpha2=*(pRGBData+(height-i-1)*width*4+j*8+7);
- Y1=(((66*R1+129*G1+25*B1+128)>>8)+16)>255?255:(((66*R1+129*G1+25*B1+128)>>8)+16);
- U1=((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128)>255?255:((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128);
- Y2=(((66*R2+129*G2+25*B2+128)>>8)+16)>255?255:((66*R2+129*G2+25*B2+128)>>8)+16;
- V1=((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128)>255?255:((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128);
- *(pYUVData+i*width*3+j*6)=Y1;
- *(pYUVData+i*width*3+j*6+1)=U1;
- *(pYUVData+i*width*3+j*6+2)=Y2;
- *(pYUVData+i*width*3+j*6+3)=V1;
- *(pYUVData+i*width*3+j*6+4)=alpha1;
- *(pYUVData+i*width*3+j*6+5)=alpha2;
- }
- }
- }
- else
- {
- unsignedcharalpha=255;
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- B1=*(pRGBData+(height-i-1)*width*3+j*6);
- G1=*(pRGBData+(height-i-1)*width*3+j*6+1);
- R1=*(pRGBData+(height-i-1)*width*3+j*6+2);
- B2=*(pRGBData+(height-i-1)*width*3+j*6+3);
- G2=*(pRGBData+(height-i-1)*width*3+j*6+4);
- R2=*(pRGBData+(height-i-1)*width*3+j*6+5);
- Y1=((66*R1+129*G1+25*B1+128)>>8)+16;
- U1=((-38*R1-74*G1+112*B1+128)>>8+(-38*R2-74*G2+112*B2+128)>>8)/2+128;
- Y2=((66*R2+129*G2+25*B2+128)>>8)+16;
- V1=((112*R1-94*G1-18*B1+128)>>8+(112*R2-94*G2-18*B2+128)>>8)/2+128;
- Y1=(((66*R1+129*G1+25*B1+128)>>8)+16)>255?255:(((66*R1+129*G1+25*B1+128)>>8)+16);
- U1=((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128)>255?255:((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128);
- Y2=(((66*R2+129*G2+25*B2+128)>>8)+16)>255?255:((66*R2+129*G2+25*B2+128)>>8)+16;
- V1=((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128)>255?255:((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128);
- *(pYUVData+i*width*3+j*6)=Y1;
- *(pYUVData+i*width*3+j*6+1)=U1;
- *(pYUVData+i*width*3+j*6+2)=Y2;
- *(pYUVData+i*width*3+j*6+3)=V1;
- *(pYUVData+i*width*3+j*6+4)=alpha;
- *(pYUVData+i*width*3+j*6+5)=alpha;
- }
- }
- }
- }
- else
- {
- if(alphaRGB)
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- B1=*(pRGBData+(height-i-1)*width*4+j*8);
- G1=*(pRGBData+(height-i-1)*width*4+j*8+1);
- R1=*(pRGBData+(height-i-1)*width*4+j*8+2);
- B2=*(pRGBData+(height-i-1)*width*4+j*8+4);
- G2=*(pRGBData+(height-i-1)*width*4+j*8+5);
- R2=*(pRGBData+(height-i-1)*width*4+j*8+6);
- Y1=(((66*R1+129*G1+25*B1+128)>>8)+16)>255?255:(((66*R1+129*G1+25*B1+128)>>8)+16);
- U1=((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128)>255?255:((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128);
- Y2=(((66*R2+129*G2+25*B2+128)>>8)+16)>255?255:((66*R2+129*G2+25*B2+128)>>8)+16;
- V1=((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128)>255?255:((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128);
- *(pYUVData+i*width*2+j*4)=Y1;
- *(pYUVData+i*width*2+j*4+1)=U1;
- *(pYUVData+i*width*2+j*4+2)=Y2;
- *(pYUVData+i*width*2+j*4+3)=V1;
- }
- }
- }
- else
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- B1=*(pRGBData+(height-i-1)*width*3+j*6);
- G1=*(pRGBData+(height-i-1)*width*3+j*6+1);
- R1=*(pRGBData+(height-i-1)*width*3+j*6+2);
- B2=*(pRGBData+(height-i-1)*width*3+j*6+3);
- G2=*(pRGBData+(height-i-1)*width*3+j*6+4);
- R2=*(pRGBData+(height-i-1)*width*3+j*6+5);
- Y1=(((66*R1+129*G1+25*B1+128)>>8)+16)>255?255:(((66*R1+129*G1+25*B1+128)>>8)+16);
- U1=((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128)>255?255:((((-38*R1-74*G1+112*B1+128)>>8)+((-38*R2-74*G2+112*B2+128)>>8))/2+128);
- Y2=(((66*R2+129*G2+25*B2+128)>>8)+16)>255?255:((66*R2+129*G2+25*B2+128)>>8)+16;
- V1=((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128)>255?255:((((112*R1-94*G1-18*B1+128)>>8)+((112*R2-94*G2-18*B2+128)>>8))/2+128);
- *(pYUVData+i*width*2+j*4)=Y1;
- *(pYUVData+i*width*2+j*4+1)=U1;
- *(pYUVData+i*width*2+j*4+2)=Y2;
- *(pYUVData+i*width*2+j*4+3)=V1;
- }
- }
- }
- }
- return0;
- }
- //////////////////////////////////////////////////////////////////////////
- //pGBYUVpointtothebackgroundYUVdata
- //pFGYUVpointtotheforegroundYUVdata
- //widthwidthofthepicture
- //heightheightofthepicture
- //alphaBGisthereanalphachannelinbackgroundYUVdata
- //alphaFGisthereanalphachannelinfourgroundYUVdata
- //////////////////////////////////////////////////////////////////////////
- intYUVBlending(void*pBGYUV,void*pFGYUV,intwidth,intheight,boolalphaBG,boolalphaFG)
- {
- if(NULL==pBGYUV||NULL==pFGYUV)
- {
- return-1;
- }
- unsignedchar*pBGData=(unsignedchar*)pBGYUV;
- unsignedchar*pFGData=(unsignedchar*)pFGYUV;
- if(!alphaFG)
- {
- if(!alphaBG)
- {
- memcpy(pBGData,pFGData,width*height*2);
- }
- else
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- *(pBGData+i*width*2+j*4)=*(pFGData+i*width*2+j*4);
- *(pBGData+i*width*2+j*4+1)=*(pFGData+i*width*2+j*4+1);
- *(pBGData+i*width*2+j*4+2)=*(pFGData+i*width*2+j*4+2);
- *(pBGData+i*width*2+j*4+3)=*(pFGData+i*width*2+j*4+3);
- }
- }
- }
- }
- intY11,U11,V11,Y12,Y21,U21,V21,Y22;
- intalpha1,alpha2;
- if(!alphaBG)
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- Y11=*(pBGData+i*width*2+j*4);
- U11=*(pBGData+i*width*2+j*4+1);
- Y12=*(pBGData+i*width*2+j*4+2);
- V11=*(pBGData+i*width*2+j*4+3);
- Y21=*(pFGData+i*width*3+j*6);
- U21=*(pFGData+i*width*3+j*6+1);
- Y22=*(pFGData+i*width*3+j*6+2);
- V21=*(pFGData+i*width*3+j*6+3);
- alpha1=*(pFGData+i*width*3+j*6+4);
- alpha2=*(pFGData+i*width*3+j*6+5);
- *(pBGData+i*width*2+j*4)=(Y21-16)*alpha1/255+(Y11-16)*(255-alpha1)/255+16;
- *(pBGData+i*width*2+j*4+1)=((U21-128)*alpha1/255+(U11-128)*(255-alpha1)/255+(U21-128)*alpha2/255+(U11-128)*(255-alpha2)/255)/2+128;
- *(pBGData+i*width*2+j*4+3)=((V21-128)*alpha1/255+(V11-128)*(255-alpha1)/255+(V21-128)*alpha2/255+(V11-128)*(255-alpha2)/255)/2+128;
- *(pBGData+i*width*2+j*4+2)=(Y22-16)*alpha2/255+(Y12-16)*(255-alpha2)/255+16;
- }
- }
- }
- else
- {
- for(inti=0;i<height;++i)
- {
- for(intj=0;j<width/2;++j)
- {
- Y11=*(pBGData+i*width*3+j*6);
- U11=*(pBGData+i*width*3+j*6+1);
- Y12=*(pBGData+i*width*3+j*6+2);
- V11=*(pBGData+i*width*3+j*6+3);
- Y21=*(pFGData+i*width*3+j*6);
- U21=*(pFGData+i*width*3+j*6+1);
- Y22=*(pFGData+i*width*3+j*6+2);
- V21=*(pFGData+i*width*3+j*6+3);
- alpha1=*(pFGData+i*width*3+j*6+4);
- alpha2=*(pFGData+i*width*3+j*6+5);
- *(pBGData+i*width*3+j*6)=(Y21-16)*alpha1/255+(Y11-16)*(255-alpha1)/255+16;
- *(pBGData+i*width*3+j*6+1)=((U21-128)*alpha1/255+(U11-128)*(255-alpha1)/255+(U21-128)*alpha2/255+(U11-128)*(255-alpha2)/255)/2+128;
- *(pBGData+i*width*3+j*6+3)=((V21-128)*alpha1/255+(V11-128)*(255-alpha1)/255+(V21-128)*alpha2/255+(V11-128)*(255-alpha2)/255)/2+128;
- *(pBGData+i*width*3+j*6+2)=(Y22-16)*alpha2/255+(Y12-16)*(255-alpha2)/255+16;
- }
- }
- }
- return0;
- }
相关推荐
标签中的`yuv2rgb`和`yuy2图片格式`进一步强调了这个主题的核心,即处理YUY2格式的YUV数据并将其转换为RGB格式。`matlab图像处理`则表明这是在MATLAB环境下完成的,MATLAB提供了强大的图像处理工具箱,使得这样的...
RGB和YUV之间可以通过特定的公式进行相互转换: - **RGB → YUV**: - \(Y = 0.30R + 0.59G + 0.11B\) - \(U = 0.493(B − Y)\) - \(V = 0.877(R − Y)\) - **RGB → YCbCr**: - 转换公式与RGB → YUV类似,但...
yuy2转换为rgb24的小工具,图片转换小工具。
超快全免费的YUY2TORGB的转换动态链接库,带VB范例,Dll没有源码,但也没有任何限制,随意使用。5年前普通台式机320*240的转换16ms以内,其实在实际测试中经常是0ms,大概是3次0,1次16,我也不知道为什么。重要用途...
这次的资源"YUY2-RGB.rar"包含了关于如何将YUY2格式的数据转换为RGB格式的各种算法,这对于我们理解和处理YUV色彩空间的图像至关重要。 YUY2,也称为YCbCr 4:2:2,是一种半像素的色彩格式,其中每个像素由一个Y...
RGB2YUY2,RGB转YUY2,
将我的罗技相机的 YUY2 输入转换为 RGB。 可能与 YUV 到 RGB 转换器相同。 如果您需要此文件来处理来自相机的视频输入,这里有另一种方法(我还没有测试过)。 引用 Lautaro Camona ( ...
在从YUY420(YV12)转换到YUY2(YUV422)的过程中,需要重新排列和复制数据。这是因为YUY2要求每两个Y像素共享一个U和V分量,而在YV12中,U和V分量不是紧邻Y像素的。因此,转换过程包括将YV12的Y、U、V平面重新组合...
3. 考虑到4:2:0到4:2:2的子采样转换,对于每个YUY2像素,你需要取YV12中的两个相邻像素的U和V分量。例如,对于位置`(x, y)`的像素,U和V值来自YV12的位置`(x, y)`和`(x + 1, y)`,而对于`(x, y + 1)`,则来自`(x, y ...
它支持多种未压缩纯视频数据 (Uncompressed Raw Video Data,包括 YV12、IYUV、YUY2、YVYU、UYVY、VYUY、RGB24) 文件的显示播放,以及任意两种格式之间的相互转换。 主要功能 ○ 播放多种未压缩纯视频文件,包括 YV...
本文将详细讲解如何高效地进行YUY2到灰度以及灰度到RGB24的转换,并探讨相关优化策略。 YUY2是一种4:2:2的采样格式,每个像素由两个Y(亮度)分量和一个U、V(色度)分量组成,占用4个字节。在处理YUY2数据时,首先...
5. **编码和压缩**:最后,将转换后的Y、Cb、Cr分量按照YUY2的存储顺序编码并压缩,形成最终的YUY2数据。 在实际应用中,这个过程可能涉及到硬件加速、实时处理优化等问题。同时,为了保证质量,还需要考虑色彩保真...
本程序实现了简单的YUV数据之间的转换和YUV与RGB的转换。 注:1、本程序只是简单YUV之间的颜色空间转换和YUV与RGB的转换。 2、本程序使用的vs2019创建的,需使用2019打开工程。 3、包含功能: 1)YV12_2_I420; ...
yuy2 格式的YUV裸数据 供71帧 分辨率w:320 ,h:240
在C#中处理YUYV到RGB的转换,我们可以使用位操作来提取和组合像素值。YUYV格式的每个像素由两个像素组成,每个像素占用4个字节,其中第一个字节是Y,第二个字节是U,第三个字节是Y,第四个字节是V。对于每个像素,...
这里我们关注的是从YUV色彩空间转换到RGB色彩空间的过程,这在多媒体处理、图像编辑和视频处理中非常常见。MATLAB作为一种强大的数值计算和可视化工具,提供了丰富的函数库来支持这种转换。下面,我们将详细讨论YUV...
RGB和YUV是两种常见的颜色空间,它们在数字图像处理和视频编码中有着广泛的应用。本文将深入探讨RGB到YUV的颜色转换基础知识,以及这两种颜色模型的特性。 RGB(红绿蓝)是一种加性颜色模型,它基于三种基本颜色:...
这里提供一个rgb24转为yv12格式的源代码.
做美颜要进行格式转换,就做了两种格式的互转,( YUV420(YV12)与YUY2(YUV422,YUYV)格式互转