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

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.
主站蜘蛛池模板: 施秉县| 南汇区| 永登县| 静海县| 宣恩县| 历史| 夏邑县| 左云县| 庆元县| 永丰县| 和硕县| 宜章县| 福清市| 遂昌县| 双柏县| 汕尾市| 阳原县| 顺平县| 乌拉特后旗| 开封县| 江安县| 公安县| 淮滨县| 璧山县| 濉溪县| 新宁县| 贵定县| 齐齐哈尔市| 博乐市| 乌兰察布市| 广元市| 灌云县| 松溪县| 旬阳县| 尼勒克县| 彩票| 九龙城区| 无棣县| 涟水县| 晋宁县| 五家渠市|