| 型 | 変数名 | 説明 |
|---|---|---|
| cv::Mat | rgbImage | RGBカメラの画像。解像度は1920x1080でBGRAフォーマット。 画像の座標は ColorSpace 座標系における位置です。
cv::Vec4b pixel = rgbImage.at<cv::Vec4b>(y,x);
piexel[0] // Blue
piexel[1] // Green
piexel[2] // Red
piexel[3] // Alpha
|