Difference between revisions of "Function:ImageBinary"
From CUVI Wiki
(Created page with "__NOTOC__ ===Function=== {| |style="font-size:150%;"| <syntaxhighlight lang="cpp"> CuviStatus imageBinary(CuviImage* srcImage, CuviImage* dstImage, ...") |
|||
| (6 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
===Function=== | ====Function==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus imageBinary(CuviImage | CuviStatus imageBinary(const CuviImage& src, | ||
CuviImage | CuviImage& dst, | ||
Cuvi32f threshold = 0.5f, | const Cuvi32f threshold = 0.5f, | ||
CuviStream | const CuviStream& stream = CuviStream()); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
====Parameters==== | |||
===Parameters=== | {| | ||
|style="font-size:75%;"| | |||
{|class="wikitable" | {|class="wikitable" | ||
|- | |- | ||
| Line 20: | Line 20: | ||
! Description | ! Description | ||
|- | |- | ||
| | | src | ||
| CuviImage | | const CuviImage& | ||
| Input Image | | Input Image | ||
|- | |- | ||
| | | dst | ||
| CuviImage | | CuviImage& | ||
| Output Image | | Output Image | ||
|- | |- | ||
| threshold | | threshold | ||
| Cuvi32f | | const Cuvi32f | ||
| Threshold level | | Threshold level | ||
|- | |- | ||
| stream | | stream | ||
| 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 50: | Line 50: | ||
|- | |- | ||
| 8uC3 | | 8uC3 | ||
| | | 8uC1 | ||
|} | |} | ||
|} | |} | ||
====Sample==== | |||
[[File:Binaryin.jpg|none|frame|Input Image]] | |||
<br/> | |||
[[File:Binaryout.jpg|none|frame| Output Binary Image]] | |||
<br/> | |||
====Example==== | |||
===Example=== | |||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviImage | CuviImage gimg = cuvi::io::loadImage(path), gout; | ||
//function call | //function call | ||
cuvi:: | cuvi::colorOperations::imageBinary(gimg,gout); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
Latest revision as of 13:05, 18 October 2022
Function
|
Parameters
|
Image Type Support
|
Sample
Example
|

