Difference between revisions of "Function:Min"
From CUVI Wiki
(Created page with "__NOTOC__ Computes the minimum of image pixel values ===Function=== {| |style="font-size:150%;"| <syntaxhighlight lang="cpp"> CuviStatus min(CuviImage* image, C...") |
|||
| Line 68: | Line 68: | ||
// | //Returns minimum pixel value | ||
cuvi::arithmeticLogical::min(gimg, &min); | cuvi::arithmeticLogical::min(gimg, &min); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
Revision as of 06:41, 8 May 2012
Computes the minimum of image pixel values
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| image | CuviImage* | Input Image |
| minValue | Cuvi64f* | Minimum pixel value in the image |
| stream | CuviStream* | GPU stream ID for execution |
Image Type Support
| Input | Output |
|---|---|
| 8uC1 | Cuvi64f single value |
| 8uC3 | Cuvi64f three values |
Sample
Example
|