一、 锐化处理(高通滤波处理)Sobel 算子:Laplace 算子:0041M25.0对应数学表达式: )1,(),1(),(),1(),(),( yxfxfyxfxfyxfyxgAcute_RGB_Image(int *buffer)int x,y;for (y=0;y255) bufferImageWidth*y+x=255;else if (bufferImageWidth*y+x255) f=255;if(f=Threshhold)buffer_orgImageWidth*y+x=255;else buffer_orgImageWidth*y+x=0;改进型 Laplacevoid Laplace_edge(Uint8 *in_data) / 效果一般,延时较少int i, j;int f,g;for(i=1;i255) f=255;if(f255) f=255;if(f0) f=0;*(Uint8 *)(in_data + (i*720 + j+360) * 2 + 1) = f;