搜索资源列表
DIP程序
- 以前的数字图像处理作业,包括直方图,均衡,Sobel,中值,FFT,IFFT,DCT,IDCT,8*8DCT等-previous digital image processing operations, including the histogram, balanced and Sobel, values, FFT, IFFT, DCT, IDCT, 8 * 8DCT etc.
对图像MRIBrain_10.bmp进行锐化
- 使用edge函数,分别采用‘roberts’‘sobel’‘log’算子,对图像MRIBrain_10.bmp进行锐化,比较各个算子的效果并说明其原因。,Using the edge function, respectively ' roberts' ' sobel' ' log' operator, sharpening the image MRIBrain_10.bmp compare the effect of each operator and explain why.
bianyantiqu
- 常见的几种边缘提取方法,含Roberts算子,Sobel算子,prewitt算子,Gauss-laplace算子,canny算子,和kirsch边缘检测。-Several common edge extraction method with Roberts operator, Sobel operator, prewitt operator, Gauss-Laplace operator, canny operator and the kirsch edge detection.
sobel-detection
- this file is sobel detection
C语言现实的图像处理(包含快速傅里叶变换)
- 这代码功能有:读入和保存文件头、读入和保存信息头、读入和保存像素数据、读入和保存位图、24位的位图转化为8位位图、8位位图转换为24位位图、图像的二值化、8位位图的Sobel边缘检测、8位位图的Laplace锐化、8位位图的中值滤波、分离与合并RGB矩阵、直方图均衡化 main.c是main函数的所在;BMP.h是对位图文件头和信息头,以及调色板等的类型的声明;function.h主要完成对位图的读写操作;algorithm.h主要完成对位图进行相关的算法的处理。