码迷,mamicode.com
首页 > 编程语言 > 详细

OpenCV && C++ 02 - Create a Blank Image & Display

时间:2019-09-20 17:00:07      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:param   isp   elements   include   art   class   initial   solution   exp   

Code

/*
作者:郑大峰
时间:2019年09月20日
环境:OpenCV 4.1.1 + VS2017
内容:Create a Blank Image & Display
*/

#include "pch.h"
#include <iostream>
#include <opencv2/opencv.hpp>

using namespace std;
using namespace cv;

int main()
{
    // Create a new image which consists of 
    // 800 x 600 of resolution (800 wide and 600 high)
    // image depth of 8 bits & 3 channels 
    // each pixels initialized to the value of (100, 250, 30) for Blue, Green and Red planes respectively
    Mat image(600, 800, CV_8UC3, Scalar(100, 250, 30));

    String windowName = "Window with Blank Image";
    namedWindow(windowName);
    imshow(windowName, image);

    waitKey(0);
    destroyWindow(windowName);

    return 0;
}

Result

技术图片

Explanation

Mat::Mat(int rows, int cols, int type, const Scalar& s)

This constructor will create a Mat object with specified number of rows and number of cols and initialize each element with the value given in s.

@param rows Number of rows in a 2D array.
@param cols Number of columns in a 2D array.
@param type Array type. Use CV_8UC1, ..., CV_64FC4 to create 1-4 channel matrices, or CV_8UC(n), ..., CV_64FC(n) to create multi-channel (up to CV_CN_MAX channels) matrices.
@param s An optional value to initialize each matrix element with. To set all the matrix elements to the particular value after the construction, use the assignment operator Mat::operator=(const Scalar& value) .

OpenCV && C++ 02 - Create a Blank Image & Display

标签:param   isp   elements   include   art   class   initial   solution   exp   

原文地址:https://www.cnblogs.com/zdfffg/p/11557734.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!