Difference between revisions of "Function:Mean"
From CUVI Wiki
| Line 3: | Line 3: | ||
===Function=== | ===Function=== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus mean(const CuviImage& src, | CuviStatus mean(const CuviImage& src, | ||
| Line 11: | Line 11: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
===Parameters=== | ===Parameters=== | ||
Revision as of 10:31, 19 October 2022
Computes the mean of image pixel values. Each channel is processed individually.
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| src | const CuviImage& | Input Image |
| mean | CuviScalar& | Mean of all pixel values in the image |
| stream | const CuviStream& | GPU stream ID for execution |
Image Type Support
| Input | Output |
|---|---|
| 8uC1 | CuviScalar |
| 8uC3 | CuviScalar |
| 16uC1 | CuviScalar |
| 16uC3 | CuviScalar |
| 32fC1 | CuviScalar |
| 32fC3 | CuviScalar |
Sample
Example
|