ManagedCuda.NPP.NPPImage_8uC3.NPPImage_8uC3 C# (CSharp) Метод

NPPImage_8uC3() публичный Метод

Creates a new NPPImage from allocated device ptr. Does not take ownership of decPtr.
public NPPImage_8uC3 ( CUdeviceptr devPtr, int width, int height, int pitch ) : System
devPtr CUdeviceptr Already allocated device ptr.
width int Image width in pixels
height int Image height in pixels
pitch int Pitch / Line step
Результат System
        public NPPImage_8uC3(CUdeviceptr devPtr, int width, int height, int pitch)
            : this(devPtr, width, height, pitch, false)
        {
        }

Same methods

NPPImage_8uC3::NPPImage_8uC3 ( CUdeviceptr devPtr, NppiSize size, int pitch ) : System
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, 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