从图像中获取r,g,b像素

本文关键字:像素 图像 获取 | 更新日期: 2023-09-27 18:02:41

我是图像处理的新手,我用c#使用emgu cv,我有一个问题。我如何从图像的RGB值中获得R,G,B像素值?

从图像中获取r,g,b像素

获取RGB值的方法如下:

//load image
Image<Bgr, byte> image = new Image<Bgr, byte>("sample.png");
//get the pixel from [row,col] = 24,24
Bgr pixel = image[24, 24];
//get the b,g,r values
double b = pixel.Blue;
double g = pixel.Green;
double r = pixel.Red;