OpenCV
4.8.0
Open Source Computer Vision
|
Prev Tutorial: Mask operations on matrices
Next Tutorial: Adding (blending) two images using OpenCV
Compatibility | OpenCV >= 3.0 |
Load an image from a file:
If you read a jpg file, a 3 channel image is created by default. If you need a grayscale image, use:
In order to get pixel intensity value, you have to know the type of an image and the number of channels. Here is an example for a single channel grey scale image (type 8UC1) and pixel coordinates x and y:
C++ version only: intensity.val[0] contains a value from 0 to 255. Note the ordering of x and y. Since in OpenCV images are represented by the same structure as matrices, we use the same convention for both cases - the 0-based row index (or y-coordinate) goes first and the 0-based column index (or x-coordinate) follows it. Alternatively, you can use the following notation (C++ only):
Now let us consider a 3 channel image with BGR color ordering (the default format returned by imread):
C++ code
Python Python
You can use the same method for floating-point images (for example, you can get such an image by running Sobel on a 3 channel image) (C++ only):
The same method can be used to change pixel intensities:
There are functions in OpenCV, especially from calib3d module, such as cv::projectPoints, that take an array of 2D or 3D points in the form of Mat. Matrix should contain exactly one column, each row corresponds to a point, matrix type should be 32FC2 or 32FC3 correspondingly. Such a matrix can be easily constructed from std::vector
(C++ only):
One can access a point in this matrix using the same method Mat::at
(C++ only):
Mat is a structure that keeps matrix/image characteristics (rows and columns number, data type etc) and a pointer to data. So nothing prevents us from having several instances of Mat corresponding to the same data. A Mat keeps a reference count that tells if data has to be deallocated when a particular instance of Mat is destroyed. Here is an example of creating two matrices without copying data (C++ only):
As a result, we get a 32FC1 matrix with 3 columns instead of 32FC3 matrix with 1 column. pointsMat
uses data from points and will not deallocate the memory when destroyed. In this particular instance, however, developer has to make sure that lifetime of points
is longer than of pointsMat
If we need to copy the data, this is done using, for example, cv::Mat::copyTo or cv::Mat::clone:
An empty output Mat can be supplied to each function. Each implementation calls Mat::create for a destination matrix. This method allocates data for a matrix if it is empty. If it is not empty and has the correct size and type, the method does nothing. If however, size or type are different from the input arguments, the data is deallocated (and lost) and a new data is allocated. For example:
There is a number of convenient operators defined on a matrix. For example, here is how we can make a black image from an existing greyscale image img
Selecting a region of interest:
Conversion from color to greyscale:
Change image type from 8UC1 to 32FC1:
It is very useful to see intermediate results of your algorithm during development process. OpenCV provides a convenient way of visualizing images. A 8U image can be shown using:
A call to waitKey() starts a message passing cycle that waits for a key stroke in the "image" window. A 32F image needs to be converted to 8U type. For example: