ManagedCuda.NPP.NPPImage_8uC3.BGRToCbYCr422_709HDTV C# (CSharp) Method

BGRToCbYCr422_709HDTV() public method

3 channel 8-bit unsigned packed BGR to 2 channel 8-bit unsigned packed CbYCr422_709HDTV color conversion.
public BGRToCbYCr422_709HDTV ( NPPImage_8uC2 dest ) : void
dest NPPImage_8uC2 Destination image
return void
        public void BGRToCbYCr422_709HDTV(NPPImage_8uC2 dest)
        {
            NppStatus status = NPPNativeMethods.NPPi.BGRToCbYCr.nppiBGRToCbYCr422_709HDTV_8u_C3C2R(_devPtrRoi, _pitch, dest.DevicePointerRoi, dest.Pitch, _sizeRoi);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiBGRToCbYCr422_709HDTV_8u_C3C2R", status));
            NPPException.CheckNppStatus(status, null);
        }
NPPImage_8uC3