0

私は画像処理が初めてで、c# で emgu cv を使用していますが、問題があります。画像のRGB値からR、G、Bピクセル値を取得するにはどうすればよいですか?

4

1 に答える 1

2

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;
于 2013-03-07T13:35:40.680 に答える