我正在研究 dwayne phillips 的 C 图像处理,并使用它的源代码来了解图像处理的基础知识。源代码中的所有函数都以我通常使用的不同风格给出
在这里,我给出了源代码中给出的普通函数。我使用带有minGW
编译器的 dev c++ 来编译具有该函数的代码
edm8(in_name, out_name, the_image, out_image,
il, ie, ll, le, value)
char in_name[], out_name[];
int il, ie, ll, le;
short the_image[ROWS][COLS],
out_image[ROWS][COLS],
value;
{
int a, b, count, i, j, k;
create_file_if_needed(in_name, out_name, out_image);
read_tiff_image(in_name, the_image, il, ie, ll, le);
for(i=0; i<ROWS; i++)
for(j=0; j<COLS; j++)
out_image[i][j] = 0;
/***************************
*
* Loop over image array
*
****************************/
printf("\n");
for(i=0; i<ROWS; i++){
if( (i%10) == 0) printf("%3d", i);
for(j=0; j<COLS; j++){
if(the_image[i][j] == value)
out_image[i][j] = distance_8(the_image, i, j, value);
} /* ends loop over j */
} /* ends loop over i */
write_array_into_tiff_image(out_name, out_image,
il, ie, ll, le);
} /* ends edm8 */
现在当我编译像上面这样的任何函数时,我得到了这两个错误
[Error] expected constructor, destructor, or type conversion before '(' token
[Error] expected unqualified-id before '{' token in
我无法追踪、调试和理解他们产生的原因??