*n 平均フィルターを実装したいと考えています。そのために、元の画像の an*n 正方形領域を指す n*n ポインターを作成し、その正方形の各ピクセルに各コンポーネントの値を格納したいと考えています。つまり、dataPtrOrigin_aux0 で始まり、dataPtrOrigin_aux(n*n-1) で終わるポインターを作成します。次のコードがあります。
` internal static void nxn_average(Image img, Image imgUndo){
unsafe
{
MIplImage m = img.MIplImage;
MIplImage mUndo = imgUndo.MIplImage;
byte* dataPtrFinal = (byte*)m.imageData.ToPointer();
byte* dataPtrUndo = (byte*)mUndo.imageData.ToPointer();
int width = img.Width;
int height = img.Height;
int nChan = m.nChannels;
int padding = m.widthStep - m.nChannels * m.width;
int b_sum, g_sum, r_sum;
int b_average, g_average, r_average;
int x, y, i, j, k;
int counter = 0;
int n = 5;
string[] ptr_names_arr = new string[n*n];
//create the names of the n*n pointers
for (i = 0; i < n * n; i++)
{
char ptr_nr = (char)i;
string ptr_name = String.Concat("dataPtrOrigin_aux", ptr_nr);
ptr_names_arr[i] = ptr_name;
}
for (x = 0; x < width; x++)
{
for (y = 0; y < height; y++)
{
for (j = 0; j < n; j++)
{
for (k = 0; k < n; k++)
{
string ptr_aux = ptr_names_arr[counter];
counter++;
byte* ptr_aux = (byte*)(dataPtrUndo + (y - (int)Math.Floor(n/2) + j) * m.widthStep + (x - (int)Math.Floor(n/2) + k) * m.nChannels);
}
}
}
}
}
}`
ただし、次の行を使用しようとするとエラーが発生します。
byte* ptr_aux = (byte*)(dataPtrUndo + (y - (int)Math.Floor(n/2) + j) * m.widthStep + (x - (int)Math.Floor(n/2) + k) * m.nChannels);
任意の数のポインターを作成する他の方法はありますか?