Difference between revisions of "Function:HistEq"
From CUVI Wiki
(Created page with "__NOTOC__ Performs histogram equalization ===Function=== {| |style="font-size:150%;"| <syntaxhighlight lang="cpp"> CuviStatus histEq(CuviImage* srcImage, Cuv...") |
|||
| (6 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
Performs histogram equalization | Performs histogram equalization | ||
===Function=== | ====Function==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus histEq(CuviImage | CuviStatus histEq(const CuviImage& src, | ||
CuviImage | CuviImage dst, | ||
CuviStream | const CuviStream& stream = CuviStream()); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
====Parameters==== | |||
{| | |||
|style="font-size:75%;"| | |||
{|class="wikitable" | {|class="wikitable" | ||
|- | |- | ||
| Line 18: | Line 20: | ||
! Description | ! Description | ||
|- | |- | ||
| | | src | ||
| CuviImage | | const CuviImage& | ||
| Input Image | | Input Image | ||
|- | |- | ||
| | | dst | ||
| CuviImage | | CuviImage& | ||
| Equalized Image | | Equalized Image | ||
|- | |- | ||
| stream | | stream | ||
| 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 42: | Line 45: | ||
| 8uC1 | | 8uC1 | ||
|} | |} | ||
|} | |} | ||
====Sample==== | |||
[[File:Eqbefore.jpg|none|frame|Input Image]] | |||
<br/> | |||
[[File:Eqafter.jpg|none|frame|Equalized Image]] | |||
<br/> | |||
===Example=== | ====Example==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
//Input and output image containers on GPU | //Input and output image containers on GPU | ||
CuviImage | CuviImage gimg = cuvi::io::loadImage(path,CUVI_LOAD_IMAGE_GRAYSCALE), gout; | ||
//Histogram equalization | //Histogram equalization | ||
Latest revision as of 13:02, 18 October 2022
Performs histogram equalization
Function
|
Parameters
|
Image Type Support
|
Sample
Example
|

