Difference between revisions of "Function:Min"
From CUVI Wiki
(→Sample) |
|||
| (10 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
Computes the minimum of image pixel values | Computes the minimum of image pixel values | ||
===Function=== | ====Function==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="C"> | |||
CuviStatus min(const CuviImage& src, | |||
CuviScalar& minValue, | |||
const CuviStream& stream = CuviStream()); | |||
</syntaxhighlight> | |||
|} | |} | ||
===Parameters=== | ====Parameters==== | ||
{| | |||
|style="font-size:75%;"| | |||
{|class="wikitable" | {|class="wikitable" | ||
|- | |- | ||
| Line 26: | Line 32: | ||
| 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 53: | Line 60: | ||
| 32fC3 | | 32fC3 | ||
| CuviScalar | | CuviScalar | ||
|} | |||
|} | |} | ||
===Sample=== | ====Sample==== | ||
{| | {| | ||
|- | |- | ||
|[[File:Min.PNG]] | |[[File:Min.PNG]] | ||
|} | |} | ||
===Example=== | ===Example=== | ||
Latest revision as of 10:33, 19 October 2022
Computes the minimum of image pixel values
Function
|
Parameters
|
Image Type Support
|