搜索资源列表
NoiseReductionUsingaMedianFilter
- 本实验要求编写一个中值滤波的程序,并对产生的椒盐噪声的图像进行中值滤波处理。中值滤波是基于统计学的一种非线性滤波方法。我们还需要知道一个按大小排列的数组中间位置上的数据称为是中值。通过修改在实验project03-04的程序实现3*3中值滤波。-Prepared in this experiment, a median filtering process, and salt and pepper noise generated by the image processing median fil
zig
- 输入2维数组和行数列数,进行之字形重新排列,输出1维数组,比如图像的DCT变换系数-DCT,zigzag
magiccube
- 产生n*n魔方阵,如3×3的魔方阵: 8 1 6 3 5 7 4 9 2 魔方阵的排列规律如下: (1)将1放在第一行中间一列; (2)从2开始直到n×n止各数依次按下列规则存放;每一个数存放的行比前一个数的行数减1,列数加1(例如上面的三阶魔方阵,5在4的上一行后一列); (3)如果上一个数的行数为1,则下一个数的行数为n(指最下一行) 例如1在第一行,则2应放在最下一行,列数同样加1; (4)当上一个数的列数为n时,下一
ZIGZAG
- zigzag数组是JPEG编码里取像素数据的排列顺序,用户输入n,程序就可以实现规定矩阵沿45度线递增,形成一个zigzag数组-zigzag array is arranged in order to take the pixel JPEG encoded data, the user input n, the program can be achieved along the 45 degree line matrix specified increments to form a zigza
array-sort
- 基于vb的数组排列的简易小程序,可以对一组数据比如学生成绩进行排序-Vb array arrangement simple applet, you can sort a set of data such as student achievement
ASCII-MAB
- 计算MAB值和将十六进制数组转化成对应ASCII字符并格式化排列的C源代码-Calculate the the MAB value of and the hex array into the corresponding ASCII characters and format arranged in C source code
Image-Merge
- 图像合并:把同一目录下所有图像合并为一个图像,可以设定每行排列图像数。-Image combining: the same directory all the images into a single image, you can set the number of images per row arrangement.
LBP算法程序
- 原始的LBP算子定义在像素3*3的邻域内,以邻域中心像素为阈值,相邻的8个像素的灰度值与邻域中心的像素值进行比较,若周围像素大于中心像素值,则该像素点的位置被标记为1,否则为0。这样,3*3邻域内的8个点经过比较可产生8位二进制数,将这8位二进制数依次排列形成一个二进制数字,这个二进制数字就是中心像素的LBP值,LBP值共有2828种可能,因此LBP值有256种。中心像素的LBP值反映了该像素周围区域的纹理信息。(The original LBP operator is defined in t