ManagedCuda.NPP.NPPImage_8uC3.ToCudaPitchedDeviceVariable C# (CSharp) Méthode

ToCudaPitchedDeviceVariable() public méthode

Converts a NPPImage to a CudaPitchedDeviceVariable
public ToCudaPitchedDeviceVariable ( ) : CudaPitchedDeviceVariable
Résultat CudaPitchedDeviceVariable
        public CudaPitchedDeviceVariable<VectorTypes.uchar3> ToCudaPitchedDeviceVariable()
        {
            return new CudaPitchedDeviceVariable<VectorTypes.uchar3>(_devPtr, _sizeOriginal.width, _sizeOriginal.height, _pitch);
        }
NPPImage_8uC3