Function:ImageBinary
From CUVI Wiki
Function
CuviStatus imageBinary(const CuviImage& src, CuviImage& dst, const Cuvi32f threshold = 0.5f, const CuviStream& stream = CuviStream()); |
Parameters
Name | Type | Description |
---|---|---|
src | const CuviImage& | Input Image |
dst | CuviImage& | Output Image |
threshold | const Cuvi32f | Threshold level |
stream | const CuviStream& | GPU stream ID for execution |
Image Type Support
Input | Output |
---|---|
8uC1 | 8uC1 |
8uC3 | 8uC1 |
Sample
Example
CuviImage gimg = cuvi::io::loadImage(path), gout; //function call cuvi::colorOperations::imageBinary(gimg,gout); |