资源列表
lookup_multi
- //4×4 查找表乘法器 module mult4x4(out,a,b,clk) output[7:0] out input[3:0] a,b input clk reg[7:0] out reg[1:0] firsta,firstb reg[1:0] seconda,secondb wire[3:0] outa,outb,outc,outd always @(posedge clk) begin firsta = a[3:2] se
chainecode
- 以四连接为基础的图像编码技术,是一个老师给的课堂练习,感觉方法相当巧妙
fdxg
- 图像处理中的浮雕效果图像,已经通过调试,可方便使用
interpolation.rar
- 用matlab语言实现双线性内插算,可设图像宽度和高度按不同的比例放大缩小,Matlab language used bilinear interpolation operator can set the image width and height according to different zoom ratio
huidugongshengjuzhen
- 基于灰度共生矩阵的医学图像处理的分割应用,使用MATLAB环境-hui du gong sheng ju zhen
fft
- 图像处理中对二维图像进行fft变换时需要用的fft程序-Image processing two-dimensional images of fft transform procedure when the need for fft
highpass_1ch
- Using highpassfilter for image in spatial domain
HuffmanDialog
- C语言实现图像的霍夫曼编码~可以实现简单的霍夫曼编码-C-Image of the Huffman coding ~ simple Huffman coding can be achieved
open_image_matlab.tar
- Function to invoke image dialog box for interactive image loading and get image too.
tv
- 全方差最小化算法,主要用于图像降噪、滤波等处理工程。-This is a TV-minimization algorithm program, mainly used to reduce the noise data and smooth the artifacts.
FENGE_JUNY
- 图像分割,包含均匀性度量法、类间最大距离法、最大熵法-Segmentation, comprising a homogenous measure law, the maximum distance between the class method, maximum entropy method
matlab实现灰度图像的直方图均衡化算法
- matlab编程实现灰度图像的直方图均衡化算法 (1)使用Matlab实现,不能直接调用自带的histeq函数 (2)采用函数调用的方式:定义功能函数g=myhisteq(f) (3)将结果与使用Matlab自带的histeq函数得到的结果进行比较