私は次のことを持っています: img は HeightXWidth の IplImage です。3 つのチャネルがあるので、次の方法ではなく別のソリューションを使用して、1 つの画像のピクセルの 3 つの値にアクセスしたいと考えています。
IplImage* img=cvCreateImage(...);
...
CvScalar scalar= cvGet2D(img, i, j); //where i and j are the coordinates of the considered pixel
double v0=scalar.val[0];
double v1=scalar.val[1];
double v2=scalar.val[2];
私の考えは、OpenCV の依存関係を取り除き、別の方法で変更することです。
助言がありますか?