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

MinMaxIndex() public method

Image pixel minimum and maximum values with their indices. Buffer is internally allocated and freed.
public MinMaxIndex ( int coi, CudaDeviceVariable min, CudaDeviceVariable max, CudaDeviceVariable minIndex, CudaDeviceVariable maxIndex ) : void
coi int Channel of interest (0, 1 or 2)
min CudaDeviceVariable Allocated device memory with size of at least 1 * sizeof(byte)
max CudaDeviceVariable Allocated device memory with size of at least 1 * sizeof(byte)
minIndex CudaDeviceVariable Allocated device memory with size of at least 1 * sizeof(NppiPoint)
maxIndex CudaDeviceVariable Allocated device memory with size of at least 1 * sizeof(NppiPoint)
return void
        public void MinMaxIndex(int coi, CudaDeviceVariable<byte> min, CudaDeviceVariable<byte> max, CudaDeviceVariable<NppiPoint> minIndex, CudaDeviceVariable<NppiPoint> maxIndex)
        {
            int bufferSize = MinMaxIndexGetBufferHostSize();
            CudaDeviceVariable<byte> buffer = new CudaDeviceVariable<byte>(bufferSize);

            status = NPPNativeMethods.NPPi.MinMaxIndxNew.nppiMinMaxIndx_8u_C3CR(_devPtrRoi, _pitch, _sizeRoi, coi, min.DevicePointer, max.DevicePointer, minIndex.DevicePointer, maxIndex.DevicePointer, buffer.DevicePointer);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiMinMaxIndx_8u_C3CR", status));
            buffer.Dispose();
            NPPException.CheckNppStatus(status, this);
        }

Same methods

NPPImage_8uC3::MinMaxIndex ( int coi, CudaDeviceVariable min, CudaDeviceVariable max, CudaDeviceVariable minIndex, CudaDeviceVariable maxIndex, CudaDeviceVariable buffer ) : void
NPPImage_8uC3::MinMaxIndex ( int coi, CudaDeviceVariable min, CudaDeviceVariable max, CudaDeviceVariable minIndex, CudaDeviceVariable maxIndex, NPPImage_8uC1 mask ) : void
NPPImage_8uC3::MinMaxIndex ( int coi, CudaDeviceVariable min, CudaDeviceVariable max, CudaDeviceVariable minIndex, CudaDeviceVariable maxIndex, NPPImage_8uC1 mask, CudaDeviceVariable buffer ) : void
NPPImage_8uC3