Search
 
SCRIPT & CODE EXAMPLE
 

CPP

displaying m images m windows opencv c++

imshow("1",img1);
imshow("2",img2);
Comment

displaying m images one window opencv c++

/**
     * @brief makeCanvas Makes composite image from the given images
     * @param vecMat Vector of Images.
     * @param windowHeight The height of the new composite image to be formed.
     * @param nRows Number of rows of images. (Number of columns will be calculated
     *              depending on the value of total number of images).
     * @return new composite image.
     */
    cv::Mat makeCanvas(std::vector<cv::Mat>& vecMat, int windowHeight, int nRows) {
            int N = vecMat.size();
            nRows  = nRows > N ? N : nRows; 
            int edgeThickness = 10;
            int imagesPerRow = ceil(double(N) / nRows);
            int resizeHeight = floor(2.0 * ((floor(double(windowHeight - edgeThickness) / nRows)) / 2.0)) - edgeThickness;
            int maxRowLength = 0;

            std::vector<int> resizeWidth;
            for (int i = 0; i < N;) {
                    int thisRowLen = 0;
                    for (int k = 0; k < imagesPerRow; k++) {
                            double aspectRatio = double(vecMat[i].cols) / vecMat[i].rows;
                            int temp = int( ceil(resizeHeight * aspectRatio));
                            resizeWidth.push_back(temp);
                            thisRowLen += temp;
                            if (++i == N) break;
                    }
                    if ((thisRowLen + edgeThickness * (imagesPerRow + 1)) > maxRowLength) {
                            maxRowLength = thisRowLen + edgeThickness * (imagesPerRow + 1);
                    }
            }
            int windowWidth = maxRowLength;
            cv::Mat canvasImage(windowHeight, windowWidth, CV_8UC3, Scalar(0, 0, 0));

            for (int k = 0, i = 0; i < nRows; i++) {
                    int y = i * resizeHeight + (i + 1) * edgeThickness;
                    int x_end = edgeThickness;
                    for (int j = 0; j < imagesPerRow && k < N; k++, j++) {
                            int x = x_end;
                            cv::Rect roi(x, y, resizeWidth[k], resizeHeight);
                            cv::Size s = canvasImage(roi).size();
                            // change the number of channels to three
                            cv::Mat target_ROI(s, CV_8UC3);
                            if (vecMat[k].channels() != canvasImage.channels()) {
                                if (vecMat[k].channels() == 1) {
                                    cv::cvtColor(vecMat[k], target_ROI, CV_GRAY2BGR);
                                }
                            } else {             
                                vecMat[k].copyTo(target_ROI);
                            }
                            cv::resize(target_ROI, target_ROI, s);
                            if (target_ROI.type() != canvasImage.type()) {
                                target_ROI.convertTo(target_ROI, canvasImage.type());
                            }
                            target_ROI.copyTo(canvasImage(roi));
                            x_end += resizeWidth[k] + edgeThickness;
                    }
            }
            return canvasImage;
    }
Comment

PREVIOUS NEXT
Code Example
Cpp :: how to calculate marks in C++ 
Cpp :: c++ qt qtreewidget lock first column 
Cpp :: print an array c++ 
Cpp :: accepting multiple values from a function in cpp 
Cpp :: C++ check if thread is joinable 
Cpp :: high school hacking competition 
Cpp :: convert string to wide string 
Cpp :: Calcular el número mayor y menor C++ 
Cpp :: Make them equal codechef solution in c++ 
Cpp :: how to add 2 objects using operator overloading in c++ 
Cpp :: different way to print string in c++ 
Cpp :: c++ to c converter online 
Cpp :: run a c++ file in terminal 
Cpp :: c++ find with predicat 
Cpp :: number triangle c++ 
Cpp :: C++ (ISO) 
Cpp :: how to delay text in c++ console app 
Cpp :: c++ copy pointer vector to static 
Cpp :: npm wasm 
Cpp :: namespace c++ 
Cpp :: Change Font ImGui 
Cpp :: user inptu in cpp 
Cpp :: Integer Literrals in C++ Programming 
Cpp :: operator overloading 
Cpp :: c++ is nan 
Cpp :: delete a head node in link list 
Cpp :: C++ Assignment Operators 
Cpp :: hello world cpp 
C :: C output color font 
C :: manifest orientation portrait 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =