ZXing.PlanarYUVLuminanceSource.PlanarYUVLuminanceSource C# (CSharp) Method

PlanarYUVLuminanceSource() private method

Initializes a new instance of the PlanarYUVLuminanceSource class.
private PlanarYUVLuminanceSource ( byte luminances, int width, int height ) : System
luminances byte The luminances.
width int The width.
height int The height.
return System
      private PlanarYUVLuminanceSource(byte[] luminances, int width, int height)
         : base(width, height)
      {
         yuvData = luminances;
         this.luminances = luminances;
         dataWidth = width;
         dataHeight = height;
         left = 0;
         top = 0;
      }

Same methods

PlanarYUVLuminanceSource::PlanarYUVLuminanceSource ( byte yuvData, int dataWidth, int dataHeight, int left, int top, int width, int height, bool reverseHoriz ) : System