Difference between revisions of "Function:FocusStack"
From CUVI Wiki
| Line 5: | Line 5: | ||
|style="font-size:150%;"| | |style="font-size:150%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus | CuviStatus focusStack(const CuviImage* ImgArr, | ||
const int numImages | const int numImages | ||
CuviImage& sharpImage, | CuviImage& sharpImage, | ||
| Line 12: | Line 12: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
===Parameters=== | ===Parameters=== | ||
Revision as of 22:24, 27 April 2021
Stacks multiple images into a single image. Images need to be aligned.
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| ImgArr | const CuviImage* | Input images array |
| numImages | const int | Number of images |
| sharpImage | CuviImage& | Resultant image |
| denoiseFilter | CuviFilter | Filter to remove noise |
| stream | const CuviStream& | GPU stream ID for execution |
Image Type Support
| Input | Output |
|---|---|
| 8uC3 x N | 8uC3 |
| 16uC3 x N | 16uC3 |
Samples
Example
|



