Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++를 사용하여 OpenCV의 다중 채널 이미지에서 픽셀 값을 읽는 방법은 무엇입니까?

<시간/>

'blue_Channel', 'green_channel' 및 'red_channel'이라는 세 개의 변수를 선언했습니다. 이러한 변수의 목표는 픽셀 값을 저장하는 것입니다. 우리는 'for 루프' 내부에서 이러한 변수를 사용했습니다. 그런 다음 'color_Image_Matrix'라는 행렬을 선언했습니다.

이 메서드의 구문은 다음과 같습니다.

blue_Channel = color_image_Matrix.at<Vec3b>(i, j)[0];

BGR 이미지를 사용했습니다. 3개의 채널이 있습니다. 이 채널은 특정 시퀀스를 유지하며 color_image_Matrix.at (i, j)는 (i,i)에 위치한 픽셀 값을 나타내고 [0]은 첫 번째 채널을 나타냅니다. 예를 들어 다음과 같이 줄을 작성하는 경우:

blue_Channel=color_image_Matrix.at<Vec3b> (30, 35) [0];

이는 변수 'blue_Channel'이 (30, 35)에 위치한 첫 번째 채널의 픽셀 값을 갖는다는 것을 의미합니다. 이것이 OpenCV를 사용하여 픽셀 값에 액세스하는 방법입니다.

다음 프로그램은 다른 RGB 이미지의 픽셀 값을 읽고 콘솔 창에 다른 채널 픽셀의 값을 표시합니다.

예시

#include<iostream>
#include<opencv2/highgui/highgui.hpp>
using namespace std;
using namespace cv;
int main() {
   int blue_Channel;
   int green_Channel;
   int red_Channel;
   Mat color_image_Matrix; //Declaring a matrix to load the image//
   color_image_Matrix = imread("colors.jpg"); //loading image in the matrix//
   //Beginning of for loop to read pixel values of blue channel//
   for (int i = 0; i < color_image_Matrix.rows; i++)//loop for rows// {
      for (int j = 0; j < color_image_Matrix.cols; j++) {
         //loop for columns//
         blue_Channel = color_image_Matrix.at<Vec3b>(i, j)[0];
         //To read the value of first channel.Here the blue channel is first channel//
         cout << "Value of pixel of blue channel" << "(" << i << "," << j << ")" << "="
            << blue_Channel << endl; //showing the values in console window//
      }
   }
   //End of for loop to read pixel values of blue channel//
   //Beginning of for loop to read pixel values of green channel//
   for (int i = 0; i < color_image_Matrix.rows; i++)//loop for rows// {
      for (int j = 0; j < color_image_Matrix.cols; j++)//loop for columns// {
         green_Channel = color_image_Matrix.at<Vec3b>(i, j)[1];
         //To read the value of first channel.Here the green channel is first channel//
         cout << "Value of pixel of green channel" << "(" << i << ","
            << j << ")" << "=" << blue_Channel << endl;//showing the values in console window//
      }
   }
   //End of for loop to read pixel values of green channel//
   //Beginning of for loop to read pixel values of red channel//
   for (int i = 0; i < color_image_Matrix.rows; i++)//loop for rows// {
      for (int j = 0; j < color_image_Matrix.cols; j++)//loop for columns// {
         red_Channel = color_image_Matrix.at<Vec3b>(i, j)[2];
         //To read the value of first channel.Here the red channel is first channel//
         cout << "Value of pixel of red channel" << "(" << i << "," <<
            j << ")" << "=" << blue_Channel << endl; //showing the values in console window//
      }
   }
   //End of for loop to read pixel values of red channel//
   if (waitKey(0)==27);
      cout << "Image read successfully…!";
      return 0;
}

출력

Image read successfully...

이 프로그램을 실행하는 데 몇 분이 걸립니다. 다른 채널에서 각 픽셀 값을 읽습니다. 그렇기 때문에 전체 결과를 표시하는 데 몇 분이 걸립니다.