RUSH
Reusable Utilities in Single Headers is a collection of header-only utilities for C++
|
This library extends OpenCV's HighGUI functionalities. More...
#include <algorithm>
#include <cstddef>
#include <opencv2/core.hpp>
#include <opencv2/core/mat.hpp>
#include <opencv2/core/mat.inl.hpp>
#include <opencv2/core/types.hpp>
#include <opencv2/imgproc.hpp>
#include <vector>
Go to the source code of this file.
Functions | |
inline ::cv::Mat | rush::cv::montage (std::vector< std::vector<::cv::Mat > > &images) |
Create a montage from a matrix of images. | |
inline ::cv::Mat | rush::cv::montage (std::vector<::cv::Mat > &images, std::size_t step=0) |
Create a montage from a vector of images with a specified step. | |
This library extends OpenCV's HighGUI functionalities.
This library enables progress bar creation and management.
inline ::cv::Mat rush::cv::montage | ( | std::vector< std::vector<::cv::Mat > > & | images | ) |
Create a montage from a matrix of images.
This function takes a vector of vectors of images and creates a montage by resizing and concatenating them.
images | Vector of vectors of images. |
inline ::cv::Mat rush::cv::montage | ( | std::vector<::cv::Mat > & | images, |
std::size_t | step = 0 ) |
Create a montage from a vector of images with a specified step.
This function takes a vector of images and creates a montage with a specified step by calling the main montage function.
images | Vector of images. |
step | Step size for selecting images. |