Difference between revisions of "Function:SHL"
From CUVI Wiki
(Created page with "__NOTOC__ Left shift pixel values of the input image by specified constant value. ===Function=== {| |style="font-size:150%;"| <syntaxhighlight lang="cpp"> CuviStatus SHL(const...") |
|||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
Left shift pixel values of the input image by specified constant value. | Left shift pixel values of the input image by specified constant value. | ||
===Function=== | ====Function==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus SHL(const CuviImage& src, | CuviStatus SHL(const CuviImage& src, | ||
| Line 11: | Line 11: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
===Parameters=== | ===Parameters=== | ||
Revision as of 12:25, 18 October 2022
Left shift pixel values of the input image by specified constant value.
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| src | const CuviImage& | Input Image |
| value | const CuviImage& | Shift value |
| dst | CuviImage& | Resultant Image |
| stream | const CuviStream& | GPU stream ID for execution |
Image Type Support
| Input | Output |
|---|---|
| 8uC1 | 8uC1 |
| 8uC3 | 8uC3 |
| 16uC1 | 16uC1 |
| 16uC3 | 16uC3 |
Sample
Example
|