function RGB_image = EQA3YM_YCbCr_to_RGB( YCbCr_image )
% Converts image from RGB to YCbCr
%  shift their range back with +128
%  create the 3D RGB array with the following layers

offset = [ 0 128 128 ];
T      = [ 1.1010 -0.4448  1.1916
           1.2288 -0.1523 -0.7862
          -0.4427  1.9509  0.9230 ];

RGB_image = bsxfun(@minus,reshape(YCbCr_image,[],3), offset);
RGB_image = uint8(reshape(RGB_image*T', size(YCbCr_image)));

end

