Difference between revisions of "Function:SHR"

From CUVI Wiki
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
Right shift pixel values of the input image by specified constant value.
Right shift pixel values of the input image by specified constant value.
===Function===
====Function====
{|
{|
|style="font-size:100%;"|
|style="font-size:100%;"|
Line 12: Line 12:
|}
|}


===Parameters===
====Parameters====
 
{|
|style="font-size:75%;"|
{|class="wikitable"
{|class="wikitable"
|-
|-
Line 35: Line 36:
| 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 56: Line 58:
| 16uC3
| 16uC3
| 16uC3
| 16uC3
|}
|}
|}


===Sample===
====Example====
 
 
 
===Example===
{|
{|
|style="font-size:100%;"|
|style="font-size:100%;"|

Latest revision as of 12:27, 18 October 2022

Right shift pixel values of the input image by specified constant value.

Function

CuviStatus SHR(const CuviImage& src,
               const Cuvi32s value,
               CuviImage& dst,
               const CuviStream& stream = CuviStream());

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

Example

CuviImage input = cuvi::io::loadImage(path);

CuviImage output;

//Right shift 2 bits
cuvi::arithmeticLogical::SHR(input, 2, output);

//The above can also be achieved by using shift operator
output = input>>2;