官术网_书友最值得收藏!

Images and matrices

The most important structure in computer vision is, without doubt, the images. The image in a computer vision is the representation of the physical world captured with a digital device. This picture is only a sequence of numbers stored in a matrix format (refer to the following diagram). Each number is a measurement of the light intensity for the considered wavelength (for example, red, green, or blue in color images) or for a wavelength range (for panchromatic devices). Every point in an image is called a pixel (for a picture element), and each pixel can store one or more values depending on whether it is a black and white image (also referred to as a binary image) that stores only one value, such as 0 or 1, a grayscale-level image that stores two values, or a color image that stores three values. These values are usually between 0 and 255 in an integer number, but you can use other ranges, for example 0 to 1 in floating point numbers, as in high dynamic range imaging (HDRI) or thermal images:

The image is stored in a matrix format, where each pixel has a position in it and can be referenced by the number of the column and row. OpenCV uses the Mat class for this purpose. In the case of a grayscale image, a single matrix is used, as demonstrated in the following diagram:

In the case of a color image, such as the following diagram, we use a matrix of width x height x the number of color channels:

But the Mat class is not only for storing images; it also enables you to store any type of matrix and different sizes. You can use it as an algebraic matrix and perform operations with it. In the following sections, we are going to describe the most important matrix operations, such as addition,  multiplication, diagonalization. But, before that, it's important to know how the matrix is stored internally in the computer memory, because it is always more efficient to access the memory slots instead of accessing each pixel with the OpenCV functions.

In memory, the matrix is saved as an array or sequence of values ordered by columns and rows. The following table shows the sequence of pixels in BGR image format:

 

With this order, we can access any pixel by observing the following formula:

Value= Row_i*num_cols*num_channels + Col_i + channel_i 
OpenCV functions are quite optimized for random access, but sometimes, direct access to the memory (work with pointer arithmetic) is more efficient, for example, when we have to access all pixels in a loop.
主站蜘蛛池模板: 沅江市| 墨脱县| 拜城县| 万州区| 冕宁县| 玉龙| 石景山区| 昌图县| 西贡区| 新田县| 长子县| 九龙县| 德安县| 太康县| 裕民县| 济源市| 永康市| 福海县| 龙州县| 河曲县| 合肥市| 青冈县| 丽水市| 丽江市| 浦东新区| 河间市| 兴仁县| 菏泽市| 石台县| 扎兰屯市| 北安市| 城市| 荆门市| 东海县| 康平县| 闽清县| 兴隆县| 郑州市| 名山县| 沽源县| 射洪县|