Difference between revisions of "Function:ImageBinary"

From CUVI Wiki
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
===Function===
====Function====
{|
{|
|style="font-size:150%;"|
|style="font-size:100%;"|
<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp">
CuviStatus imageBinary(const CuviImage& src,
CuviStatus imageBinary(const CuviImage& src,
Line 11: Line 11:
|}
|}


 
====Parameters====
===Parameters===
{|
 
|style="font-size:75%;"|
{|class="wikitable"
{|class="wikitable"
|-
|-
Line 35: Line 35:
| const CuviStream&
| const CuviStream&
| GPU stream ID for execution
| GPU stream ID for execution
 
|}
|}
|}


 
====Image Type Support====
===Image Type Support===
{|
 
|style="font-size:75%;"|
{| class="wikitable"
{| class="wikitable"
|-
|-
Line 52: Line 52:
| 8uC1
| 8uC1
|}
|}
===Sample===
{|
|-
|[[File:Binaryin.jpg|frame|Input Image]]
|[[File:Binaryout.jpg|frame| Output Binary Image]]
|}
|}


====Sample====
[[File:Binaryin.jpg|none|frame|Input Image]]
<br/>
[[File:Binaryout.jpg|none|frame| Output Binary Image]]
<br/>


 
====Example====
 
===Example===
{|
{|
|style="font-size:150%;"|
|style="font-size:100%;"|
<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp">



Latest revision as of 21:05, 18 October 2022

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

Error creating thumbnail: Unable to save thumbnail to destination
Input Image


Error creating thumbnail: Unable to save thumbnail to destination
Output Binary Image


Example

CuviImage gimg = cuvi::io::loadImage(path), gout;


//function call
cuvi::colorOperations::imageBinary(gimg,gout);