Histogram Eq
- group NVCV_C_ALGORITHM__HISTOGRAM_EQ
Functions
-
NVCVStatus cvcudaHistogramEqCreate(NVCVOperatorHandle *handle, uint32_t maxBatchSize)
Constructs and an instance of the HistogramEq operator.
- Parameters:
handle – [out] Where the image instance handle will be written to.
Must not be NULL.
maxBatchSize – [in] the maximum batch size.
- Return values:
NVCV_ERROR_INVALID_ARGUMENT – Handle is null.
NVCV_ERROR_OUT_OF_MEMORY – Not enough memory to create the operator.
NVCV_SUCCESS – Operation executed successfully.
-
NVCVStatus cvcudaHistogramEqSubmit(NVCVOperatorHandle handle, cudaStream_t stream, NVCVTensorHandle in, NVCVTensorHandle out)
Executes the HistogramEq operation on the given cuda stream. This operation does not wait for completion.
Limitations:
Input: Data Layout: [kNHWC, kHWC] Channels: [1, 2, 3, 4]
Data Type
Allowed
8bit Unsigned
Yes
8bit Signed
No
16bit Unsigned
No
16bit Signed
No
32bit Unsigned
No
32bit Signed
No
32bit Float
No
64bit Float
No
Output: Data Layout: [kNHWC, kHWC] Channels: [1, 2, 3, 4]
Data Type
Allowed
8bit Unsigned
Yes
8bit Signed
No
16bit Unsigned
No
16bit Signed
No
32bit Unsigned
No
32bit Signed
No
32bit Float
No
64bit Float
No
Input/Output dependency
Property | Input == Output -------------- | ------------- Data Layout | Yes Data Type | Yes Number | Yes Channels | Yes Width | Yes Height | Yes
- Parameters:
handle – [in] Handle to the operator.
Must not be NULL.
stream – [in] Handle to a valid CUDA stream.
in – [in] input tensor.
out – [out] output tensor.
- Return values:
NVCV_ERROR_INVALID_ARGUMENT – Some parameter is outside valid range.
NVCV_ERROR_INTERNAL – Internal error in the operator, invalid types passed in.
NVCV_SUCCESS – Operation executed successfully.
-
NVCVStatus cvcudaHistogramEqVarShapeSubmit(NVCVOperatorHandle handle, cudaStream_t stream, NVCVImageBatchHandle in, NVCVImageBatchHandle out)
Executes the Gaussian operation on a batch of images.
- Parameters:
in – [in] Input image batch.
out – [out] Output image batch.
-
NVCVStatus cvcudaHistogramEqCreate(NVCVOperatorHandle *handle, uint32_t maxBatchSize)