搜索资源列表
对图像进行中值滤波处理的源代码
- 平滑滤波 一般来说,图像的能量主要集中在其低频部分,噪声所在的频段主要在高频段,同时系统中所要提取的汽车边缘信息也主要集中在其高频部分,因此,如何去掉高频干扰又同时保持边缘信息,是我们研究的内容。为了去除噪声,有必要对图像进行平滑,可以采用低通滤波的方法去除高频干扰。图像平滑包括空域法和频域法两大类,在空域法中,图像平滑的常用方法是采用均值滤波或中值滤波,对于均值滤波,它是用一个有奇数点的滑动窗口在图像上滑动,将窗口中心点对应的图像像素点的灰度值用窗口内的各个点的灰度值的平均值代替,如果滑动窗口
SAR Filter.rar
- SAR图像三种滤波方法: 1、gamma_MAP滤波; 2、均方差滤波: 3、Lee滤波,SAR image filtering method three: 1, gamma_MAP filter 2, mean square error filter: 3, Lee filter
Filter_FIR_IIR
- 基于CCS和DSP的FIR有限冲击滤波和IIR无限冲击滤波(FIR finite impulse filter and IIR infinite impulse filter based on CCS and DSP.)
当前统计模型+跟踪+卡尔曼滤波
- 基于 “ 当前 ” 统计模型的自适应不敏卡尔曼滤波算法(Adaptive Unscented Kalman Filtering Algorithm Based on Current Statistical Model)
平均滤波程序
- 基于Matlab平台的进行图像处理;进行平均滤波。(Average filtering in image processing)
KFCS_new
- 将卡尔曼滤波的方法与压缩感知联系在一起,实现对动态压缩感知信号的恢复。(combined the kalman filter and compressed sensing, to realize the recovery of dynamic signal.)
胡韦伟论文程序
- 基于双边滤波的retinex图像增强算法(Retinex Algorithm for Image Enhancement Based on Bilateral Filtering)
两种滤波
- 滤波核心技术,可用于CT和各种图像滤波,FFT,RADON变换是核心(Filtering core technology, can be used for CT and various image filtering, FFT, RADON transform is the core)
bfilter2
- 双边滤波;matlab;附带demo,可以运行,供借鉴(bilateralfilter This is the matlab code of the filter and it has a demo)
常用代码
- C语言写的卡尔曼滤波器,用于将MPU传输的数据进行滤波去除杂波以达到精准控制。(C filter written in language, used to filter the data transmitted by the MPU to remove clutter to achieve precise control.)
pf-noise
- 利用粒子滤波处理噪声,在图像上散列均匀分布白噪声点。需要自行读取图片(The particle filter is used to deal with the noise, and the white noise points are evenly scattered on the image. You need to read the picture yourself)
code
- 可完成相应的SVM分类、决策树分类、图片压缩、图片重采样、中值滤波等图片处理工作(It can complete the corresponding picture processing work.)
lvbo
- MTI的AHRS解算程序,包含互补滤波的一阶、二阶和卡尔曼滤波程序。(The AHRS solution program of MTI includes the first, two order and Calman filter programs of complementary filtering)
1
- 软件滤波算法,适用于ADC数据采集处理。CRC校验码计算代码(Software filtering algorithm, is suitable for data processing)
类似于时域滤波,天线方向图是最优权的傅立叶变换
- 类似于时域滤波,天线方向图是最优权的傅立叶变换(Similar to the time domain filtering, the antenna pattern is the optimal Fu Liye transform)
单模和双模比较
- 北斗GPS双模在利用“当前”统计模型并利用kalman滤波时,其系统噪声和观测噪声未知且时变,而且加速度上下限不能自适应于未知运动规律的无人飞行器当前加速度,导致导航精度降低。该程序是相应的MATLAB仿真程序。(Beidou GPS dual mode uses the "current" statistical model and the Kalman filter. Its system noise and observation noise are unknown a
median_filter
- 这个verilog程序实现了图像中值滤波,处理实时性很强,有兴趣的可以参考(This Verilog program implements the median filter in the image, the processing is very real, and the interest can be referred to)
卡尔曼滤波
- 1、运动目标进行检测与跟踪,背景差分法,卡尔曼滤波,检测结果用红色外接矩形框表示,跟踪结果用绿色矩形框表示 2、采用平均背景法更新背景图像; 3、代码部分附详细解释(1. The moving target in the video sequence is detected and tracked, the moving target detection part uses the background difference method, the tracking part uses Calm
卡尔曼滤波
- 提供了一个扩展卡尔曼滤波源程序,无迹卡尔曼滤波源程序,交互式模型卡尔曼滤波源程序,扩展卡尔曼滤波及无迹卡尔曼滤波对比源程序及一个扩展卡尔曼滤波的目标跟踪算法源程序。(An extended kalman filter source program, no trace kalman filter source program, interactive model kalman filter source program, extended kalman filter and non trace k
图像空域滤波(二)
- 1. 锐化滤波; 2. Sobel水平方向滤波与垂直方向滤波。 3. 对灰度图像执行均值平滑滤波; 4. 对灰度图像执行中值平滑滤波; 5. 中值平滑滤波与均值平滑滤波对比。