搜索资源列表
对图像进行中值滤波处理的源代码
- 平滑滤波 一般来说,图像的能量主要集中在其低频部分,噪声所在的频段主要在高频段,同时系统中所要提取的汽车边缘信息也主要集中在其高频部分,因此,如何去掉高频干扰又同时保持边缘信息,是我们研究的内容。为了去除噪声,有必要对图像进行平滑,可以采用低通滤波的方法去除高频干扰。图像平滑包括空域法和频域法两大类,在空域法中,图像平滑的常用方法是采用均值滤波或中值滤波,对于均值滤波,它是用一个有奇数点的滑动窗口在图像上滑动,将窗口中心点对应的图像像素点的灰度值用窗口内的各个点的灰度值的平均值代替,如果滑动窗口
migong
- 采用数组存储,用链表实现迷宫的代码……原创编写,测试时间复杂度与空间复杂度低-Using an array of storage, with a list of code to achieve the maze ... ... original writing, the test time complexity and space complexity lower
covariance-tracking
- 该代码用于实现视觉目标跟踪研究中的协方差跟踪,能够把多种时空特征融合于统一的模型中,在实现视觉目标跟踪时具有较好的鲁棒性,而且其维数等于使用特征的数量,与各个特征的维数无关,因此,其计算复杂度较小,实时性较好。-This code is used to realize covariance tracking in the research field of visual object tracking of computer vision. It enables fusion of variou
TrueColor2SingleBand
- VC/C++源码,图形处理,图像转换 VC实现真彩色图像转换为8位图像,RGB三个波段的灰度通过一个线性变换式计算为单波段灰度。 关于代码: DWORD _width1 = WIDTHBYTES(width*8) //保存的8bits位图保存宽度 DWORD bytesCount1 = _width0*height //存储该真彩色位图数据段所用的字节数,不是像素数 DWORD bytesCount2 = _width1*height //存储8b
DelphiUnitAnalysis
- Delphi的代码复杂度分析 代码复杂度分析的主要方面有: 1) 一个类的公开的操作成员数 2) 一个类的公开的操作属性数 3) 类实现代码的行数 4) 继承的层数据 -Delphi code complexity analysis of code complexity analysis of the main aspects: 1) a class member of the open operation 2) a number of open operat
SuffixArray
- 后缀数组是处理字符串的有力工具。后缀数组是后缀树的一个非常精巧的 替代品,它比后缀树容易编程实现,能够实现后缀树的很多功能而时间复杂度也 并不逊色,而且它比后缀树所占用的内存空间小很多。可以说,在信息学竞赛中 后缀数组比后缀树要更为实用。本文分两部分。第一部分介绍两种构造后缀数组 的方法,重点介绍如何用简洁高效的代码实现,并对两种算法进行了比较。第二 部分介绍后缀数组在各种类型题目中的具体应用。-Suffix array is a powerful tool for deal
Digital-watermarking
- 此代码实现一副灰度图像部分区域的数字水印,首先将图像读取进内存,接着转换为数组,在数组中操作后,返回图像。-This code to achieve the watermark grayscale image part of the region, first the image is read into memory, and then converted to an array, the array returned after operation, image.
paixusuanfa
- 我自己写的一个关于数据结构中各种内部排序的时间复杂度的分析代码。里面有如何具体的实现,随机产生数组函数,还有对界面也略加设计。感觉对初学数据结构算法的人有一点帮助。-I write about a data structure in the analysis of time complexity in various internal sorting code. There are how to specific implementation, random array function, it
Algorithm_EveryDay
- 里面包含的代码有:名字的漂亮度、判断两个单向链表是否有相交,并找出交点、双向冒泡排序、//数组是否重复、输出最大矩阵、实现单链表交换任意两个元素(不包括表头)等,面试必备题目-Which contains the code: name of beautiful, judgment two one-way linked list is intersect, and find out the intersection, bidirectional bubble sort,// array is re
koufan
- 分形维数计算的毯子算法matlab代码,实现了图像的灰度化并进一步用于视频监视控,计算晶粒的生长,入门级别程序。- Fractal dimension calculation algorithm matlab code blankets, Achieve a grayscale image and further control for video surveillance, Calculation of growth, entry-level program grain.
kanghui_V1.4
- 分形维数计算的毯子算法matlab代码,实现了图像的灰度化并进一步用于视频监视控,抑制载波型差分相位调制。- Fractal dimension calculation algorithm matlab code blankets, Achieve a grayscale image and further control for video surveillance, Suppressed carrier type differential phase modulation.
信号盒维数和稀疏性的提取_matlab
- 信号复杂度特征的提取,主要实现盒维数和稀疏性的matlab代码实现(Extracting the feature of signal complexity and realizing the matlab code of box dimension and sparsity)
ShukuProject
- 使用C++实现随机生成数度矩阵, 根据随机种子生成3个不同的矩阵(Random generated digital matrix)