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

NPPImage_8uC3() public method

Creates a new NPPImage from allocated device ptr.
public NPPImage_8uC3 ( CUdeviceptr devPtr, NppiSize size, int pitch ) : System
devPtr CUdeviceptr Already allocated device ptr.
size NppiSize Image size
pitch int Pitch / Line step
return System
        public NPPImage_8uC3(CUdeviceptr devPtr, NppiSize size, int pitch)
            : this(devPtr, size.width, size.height, pitch)
        {
        }

Same methods

NPPImage_8uC3::NPPImage_8uC3 ( CUdeviceptr devPtr, NppiSize size, int pitch, bool isOwner ) : System
NPPImage_8uC3::NPPImage_8uC3 ( CUdeviceptr devPtr, int width, int height, int pitch ) : System
NPPImage_8uC3::NPPImage_8uC3 ( CUdeviceptr devPtr, int width, int height, int pitch, bool isOwner ) : System
NPPImage_8uC3::NPPImage_8uC3 ( NPPImageBase image ) : System
NPPImage_8uC3::NPPImage_8uC3 ( NppiSize size ) : System
NPPImage_8uC3::NPPImage_8uC3 ( int nWidthPixels, int nHeightPixels ) : System
NPPImage_8uC3