備考 このファイルを開く方法は、「第一回-02 コンソールアプリケーションとGUIアプリケーション」を参照すること。 |
for(j=0 ; j<mHeight ; j++){ for(i=0 ; i<mLength ; i++){ (…画像処理部…) } } |
int gray = (int)(0.114*inImage[index(i,j) + 0] + 0.587*inImage[index(i,j) + 1] + 0.299*inImage[index(i,j) + 2]); outImage[index(i,j) + 0] = gray; // Blue outImage[index(i,j) + 1] = gray; // Green outImage[index(i,j) + 2] = gray; // Red |