Difference between revisions of "Function:FocusStack"
From CUVI Wiki
| Line 10: | Line 10: | ||
===Parameters=== | ===Parameters=== | ||
{| | |||
|style="font-size:75%;"| | |||
{|class="wikitable" | |||
|- | |- | ||
! Name | ! Name | ||
| Line 36: | Line 37: | ||
| const CuviStream& | | const CuviStream& | ||
| GPU stream ID for execution | | GPU stream ID for execution | ||
|} | |||
|} | |} | ||
Revision as of 14:21, 18 October 2022
Stacks multiple images into a single image. Images need to be aligned.
Function
|
Parameters
|
Image Type Support
| Input | Output |
|---|---|
| 8uC3 x N | 8uC3 |
| 16uC3 x N | 16uC3 |
Samples
Example
std::string path = "D:/dataset/fs/imageFolder/";
std::string result = "D:/dataset/fs/focused.png";
for (const auto& entry : fs::directory_iterator(path))
{
if (entry.path().has_extension() && isSupportedExtension(entry.path().extension().string()))
vec.push_back(entry.path().string());
}
int numImages = vec.size();
vector<CuviImage> ImgArr(numImages);
//Sort filesnames to read in order. THIS IS VERY IMPORTANT FOR FOCUS STACKING
sort(vec.begin(), vec.end(), lessFirst);
for (int i = 0; i < numImages; i++)
{
ImgArr[i].create(vec[i], CUVI_LOAD_IMAGE_COLOR_KEEP_DEPTH);
cout << vec[i]<< std::endl;
}
CuviImage focusImage;
CuviFilter denoiseFilter = CuviSpecialFilters::gaussian(CuviSize(11, 11), 15.0f);
cuvi::computerVision::focusStack(ImgArr.data(), numImages, focusImage, denoiseFilter);
printf("\nSaving to disk..");
cuvi::io::saveImage(focusImage, result);


