摘要:
Robert 算子: Prewitt 算子: Sobel 算子: Laplace 算子: Canny 算子: 阅读全文
摘要:
1 void erosion(BYTE* image, int w, int h, BYTE* outImg) 2 { 3 int rept; 4 //腐蚀 5 memcpy(outImg, image, sizeof(BYTE) * w * h); //将读取的图像赋值给outImg,方便进行腐蚀 阅读全文