The present invention relates to video quality of service, and more particularly to a method of measuring peak signal to noise ratio (PSNR) of full color video, both total and component contributions.
It is desired to quantify the error in color related components—chrominance, color difference, etc.—of video signals in an objective manner using units compatible with existing industry standards. PSNR is such a method for luminance only, as defined in ANSI® T1.801.03-1996: Digital Transport of One-Way Video Signals—Parameters for Objective Performance Assessment, page 35. An implementation of this standard is found in the PQA200 and PQA300 Picture Quality Analyzers manufactured by Tektronix, Inc., Beaverton, Oreg. PSNR is a measurement that gives one value for each frame or sequence of frames of the video signal under test, given the reference frame or sequence. It is also desirable to have an error map, similar to the luminance difference map, labeled “PSNR” map in the TEKTRONIX® PQA200/300 products, that displays luminance and chrominance errors simultaneously in an intuitive manner. And finally it is desirable to measure the contribution of constituent video components, i.e., Cb of YCbCr, to the total PSNR measurement.
PSNR stands for Peak Signal to Noise Ratio and is proportional to the log of a ratio of root mean square (rms) values. From ANSI® T1.801.03-1996:
PSNR(Vpeak,Cin,Cout,Ncol,Nrow,i,j,t,d):=20*log [Vpeak/{SQRT((1/(Ncol*Nrow))*ΣjΣi(Cini,j,t-d−Couti,j,t)2)}
where Cin and Cout are general image parameters, Vpeak is the reference peak unit value for Cin and Cout, Ncol is the number of columns (width) of parameter matrix C, Nrow is the number of rows (height) of parameter matrix C, i is the row index, j is the column index, t is the time index, and d is the delay between Cin and Cout. The ratio taken is the peak rms value possible for the measure divided by the actual rms difference between the test (Cout) and reference (Cin) video signals. PSNR for the TEKTRONIX® PQA200/300 products and most measurements within the ANSI® document cited above, as well as other picture quality of service (PQOS) methods, use Cin and Cout taken directly or indirectly from the pixel luminance (Y) values alone. Vpeak is taken as peak white.
LumPSNR(Ypeak,Yin,Yout,Ncol,Nrow,i,j,t,d):=20*log [Ypeak/{SQRT((1/(Ncol*Nrow))*ΣjΣi(Yini,j,t-d−Youti,j,t)2)}
Thus chrominance errors that occur independent from luminance errors are undetected by these PSNR measures.
Accordingly the present invention provides a method of measuring peak signal to noise ratio (PSNR) of full color video, both total and component contributions as well as providing PSNR full color and component maps. The components of the full color video for both reference and impaired video signals are converted to RGB values, and the error energy for each of the G, B and R channels between the reference and impaired is computed. Each component contribution to the error for the full color video components is assessed by setting the other components to a reference value, such as zero. Also the total full color PSNR is computed in RGB. Finally a color residual PSNR map is generated and displayed together with the computed PSNR results to enable a user to visualize where the significant impairments occur in the impaired video.
The objects, advantages and other novel features of the present invention are apparent from the following detailed description when read in conjunction with the appended claims and attached drawing.
Referring now to
The conversion between YCbCr and RGB in step 12, i.e., color matrix operations to transcode 422, Y, Cr, Cb to/from RGB, 700 my sources, is as follows:
For the 422 input define reconstructed 422 source input matrix (from CCIR Recommendation 601-1) as
[Y,Cb,Cr]:=M422*[G,B,R]
where M422:=[0.587 0.114 0.299; −0.331 0.500 −0.169; −0.419 −0.081 0.500]. Therefore to convert Y, Cb, Cr 422 signals to RGB, multiply by the inverse
[G,B,R]:=M422−1*[Y,Cb,Cr]
where M422−1:=[1 −0.344 −0.714; 1 1.772 9.902×10−4; 1 −9.267×10−4 1/402]:=Mycbcr2rgb.
The luminance PSNR definition in RGB is:
Y(R,G,B):=M4220,0*G+M4220,1*B+M4220,2*R
or
Y(R,G,B):=0.587*G+0.114*B+0.299*R
and for the case where Cb and Cr differences are neglected (treated as zero)
and the LumPSNR measurement is rewritten as:
Checking by substituting the R(Y), B(Y), G(Y) with Y, Y, Y using the definitions above:
Now simply by not suppressing Cb and Cr to zero—including actual values—in the definition in R, G, B, a “full color” PSNR becomes:
R(Y,Cb,Cr):=Mycbcr2rgb2,0*Y+Mycbcr2rgb2,1*Cb+Mycbcr2rgb2,2*Cr
G(Y,Cb,Cr):=Mycbcr2rgb0,0*Y+Mycbcr2rgb0,1*Cb+Mycbcr2rgb0,2*Cr
B(Y,Cb,Cr):=Mycbcr2rgb1,0*Y+Mycbcr2rgb1,1*Cb+Mycbcr2rgb1,2*Cr
As shown in step 14 the error for each channel is computed as:
RerrEngy:=ΣjΣi(R(Yini,j,t-d,Cbini,j,t-d,Crini,j,t-d)−R(Youti,j,t,Cbini,j,t,Crini,j,t))2
GerrEngy:=ΣjΣi(G(Yini,j,t-d,Cbini,j,t-d,Crini,j,t-d)−G(Youti,j,t,Cbini,j,t,Crini,j,t))2
BerrEngy:=ΣjΣi(B(Yini,j,t-d,Cbini,j,t-d,Crini,j,t-d)−B(Youti,j,t,Cbini,j,t,Crini,j,t))2
ColorPSNR(Ypeak,RerrEngy,GerrEngy,BerrEngy,Ncol,Nrow):=20*log [(SQRT(3)*Ypeak)/SQRT((1/(Ncol*Nrow))*(RerrEngy+GerrEngy+bErrEngy))]
As an example of “full color” PSNR, for convenience treat input and output video data as a simple set of three channels of one dimensional arrays:
N:=100 n:=0 . . . N−1 Ypeak:=255
Generate Y Channels, In & Out:
Yinn:=floor(rnd(1)*Ypeak)
Let ErrorLevel:=0.1
Youtn:=Yinn+floor[(rnd(ErrorLevel)−0.5*ErrorLevel)*Ypeak]
mean(Yin)=129.57 mean(Yout)=127.43
Generate Cb Channels, In & Out:
Cbinn:=floor(rnd(1)*Ypeak)
Let ErrorLevel:=0.1
Cboutn:=Cbinn+0*floor[(rnd(ErrorLevel)−0.5*ErrorLevel)*Ypeak]
mean(Cbin)=126.41 mean(Cbout)=126.41
Generate Cr Channels, In & Out:
Crinn:=floor(rnd(1)*Ypeak)
Let ErrorLevel:=0.1
Croutn:=Crinn+0*floor[(rnd(ErrorLevel)−0.5*ErrorLevel)*Ypeak]
mean(Cnn)=139.24 mean(Crout)=139.24
PSNR, Luminance Only:
LumPSNR:=20*log [Ypeak/SQRT((1/N)Σn(Yinn−Youtn)2)]
LumPSNR=31.082 dB
“Full Color” PSNR With No Chrominance Errors:
RerrEngy:=Σn[(R(Youtn,Cboutn,Croutn)−R((Yinn,Cbinn,Crinn))2]
GerrEngy:=Σn[(G(Youtn,Cboutn,Croutn)−G((Yinn,Cbinn,Crinn))2]
BerrEngy:=Σn[(B(Youtn,Cboutn,Croutn)−B((Yinn,Cbinn,Crinn))2]
FullColorPSNR:=20*log {(SQRT(3)*Ypeak)/(SQRT(1/N)*(RerrEngy+GerrEngy+BerrEngy))}
FullColorPSNR=31.082 dB LumPSNR=31.082 dB
“Full Color” PSNR With Chrominance and Luminance Errors:
Cboutn:=Cbinn+0.5*floor[(rnd(ErrorLevel)−0.5*ErrorLevel)*Ypeak]
mean(Cbin)=113.44 mean(Cbout)=113.33
Croutn:=Crinn+0.5*floor[(rnd(ErrorLevel)−0.5*ErrorLevel)*Ypeak]
mean(Crin)=139.24 mean(Crout)=138.405
FullColorPSNR=29.262 dB LumPSNR=31.082 dB
“Full Color” PSNR With Only Chrominance Errors:
Yout:=Yin
LumPSNR=∞dB
Cboutn:=Cbinn+0.5*floor[(rnd(ErrorLevel)−0.5*ErrorLevel)*Ypeak]
mean(Cbin)=113.44 mean(Cbout)=113.125
Croutn:=Crinn+0.5*floor[(rnd(ErrorLevel)−0.5*ErrorLevel)*Ypeak]
mean(Crin)=139.24 mean(Crout)=139.425
FullColorPSNR=33.951 dB
“Full Color” PSNR Maximum:
LumPSNR=0 dB
Cboutn:=Cbinn+0.5*floor[(rnd(ErrorLevel)−0.5*ErrorLevel)*Ypeak]
mean(Cbin)=127.5 mean(Cbout)=127.925
Croutn:=Crinn+0.5*floor[(rnd(ErrorLevel)−0.5*ErrorLevel)*Ypeak]
mean(Crin)=139.24 mean(Crout)=139.015
FullColorPSNR=0.003 dB
“Full Color” PSNR Maximum Sensitivity to Cb:
Σi(RGB1,−RGB2i)2=3
RpeakDueToCb:=(RGB20−RGB10)2=1
GpeakDueToCb:=(RGB21−RGB11)2=1
BpeakDueToCb:=(RGB22−RGB12)2=1
YpeakFactorDueToCb:=SQRT(3)
Likewise the “Full Color” PSNR Maximum Sensitivity to Cr is the same, i.e.,
YpeakFactorDueToCr:=SQRT(3)
Using the above “Full Color” PSNR definition with the proper linear transform, each component of any color space representation may be used to make channel specific PSNR measurements. For example PSNR, Cb only, Cr only, and Cb and Cr (chroma) only PSNR measurements may be made as with luminance only. Likewise in RGB space any combination of R, G and B may be used. And finally any component representation, regardless of color space, may be used for analogous measures. The following are examples of weighting components of “full color” PSNR:
Generate Y Channels, In & Out:
Yinn:=floor(rnd(1)*Ypeak
Let ErrorLevel:=0.04
Youtn:=Yinn+floor[(rnd(ErrorLevel)−0.5*ErrorLevel)*Ypeak]
mean(Yin)=129.02 mean(Yout)=128.06
Generate Cb Channels, In & Out:
Cbinn:=floor(rnd(1)*Ypeak)
Let ErrorLevel:=0.03
Cboutn:=Cbinn+0.5*floor[(rnd(ErrorLevel)−0.5*ErrorLevel)*Ypeak]
mean(Cbin)=123.84 mean(Cbout)=123.54
Generate Cr Channels, In & Out:
Crinn:=floor(rnd(1)*Ypeak)
Let ErrorLevel:=0.03
Croutn:=Crinn+0.5*floor[(rnd(ErrorLevel)−0.5*ErrorLevel)*Ypeak]
mean(Crin)=134.48 mean(Crout)=134.005
Assess each component contribution in step 16 to produce PSNR, Luminance Only:
LumPSNR=38.627 dB
“Full Color” PSNR With Chrominance & Luminance Errors:
FullColorPSNR=37.304 dB
“Cb” PSNR With Chrominance & Luminance Errors:
CbPSNR=46.751 dB
“Cr” PSNR With Chrominance & Luminance Errors:
CrPSNR=47.92 dB
Check Of Component PSNR Vs. “Full Color”:
The reason for the need to convert to RGB is illustrated by the following example that shows the non-equivalence of using the Y, Cb, Cr components directly to compute the FullColorPSNR, CbPSNR and CrPSNR. It is assumed that RGB should be the reference due to the fact that RGB is always a more direct representation of an image in any system that uses light sensors and displays based on RGB.
YerrEngy:=Σn[(Youtn−Yinn)2]
CberrEngy:=Σn[(Cboutn−Cbinn)2]
CrerrEngy:=Σn[(Croutn−Crinn)2]
Compare with FullColorPSNR=37.304 dB.
Likewise when YerrEngy:=CrerrEngy:=0
CbDirectPSNR:=ColorPSNRdirect=51.881 dB
Compare with CbPSNR=46.751.
In each case there is a difference of approximately 5 dB between the direct and RGB based measurements. Therefore the Y, Cb, Cr values are converted to RGB as indicated above.
Likewise the method for luminance only maps involves for each pixel in each video frame of the video signal calculating the absolute difference between the reference and test luminance (Y) values. These absolute difference values are displayed as an image in step 20 which then conveys a one-to-one mapping of the test and reference luminance difference at each pixel location. For adding color difference information the difference in Cb and Cr is similarly calculated. However to display the difference in color, there are two additional requirements: 1) Cb and Cr differences need to be added to a pedestal, i.e., 128 for 8-bit CCIR-601 video signals, instead of using the absolute value; and 2) in the event the luminance difference is near zero, chrominance differences will not be visible in the map, so that sufficient luminance must be added to make the chrominance visible—the amount added is to some extent proportional to the chrominance difference magnitude.
Thus the present invention provides a method of measuring peak signal to noise ratio (PNR) of full color video signals, both total and component, by converting component video to RGB, computing error values for each RGB channel, obtaining the contributions of each component by replacing the other component test values with reference values, computing the total PSNR in RGB, and then displaying the results with a corresponding residual color PSNR map.
Number | Name | Date | Kind |
---|---|---|---|
5432893 | Blasubramanian et al. | Jul 1995 | A |
5940124 | Janko et al. | Aug 1999 | A |
6104839 | Cok et al. | Aug 2000 | A |
6181374 | Saito et al. | Jan 2001 | B1 |
6362808 | Edge et al. | Mar 2002 | B1 |
6577764 | Myler et al. | Jun 2003 | B2 |
Number | Date | Country |
---|---|---|
2000102009 | Apr 2000 | JP |
Number | Date | Country | |
---|---|---|---|
20030193511 A1 | Oct 2003 | US |