-
autok
图像滤波matlab基于自适应k均值聚类的图像去噪方法(The image filter matlab image denoising method based on adaptive k-means clustering)
- 2021-04-19 15:18:51下载
- 积分:1
-
timesat302.part1
Timesat3.2,用于遥感影像的NDVI时间序列分析,提取物候参数。
(Timesat3.2, NDVI time series for the analysis of remote sensing images, extract phenological parameters.)
- 2017-03-21 09:09:22下载
- 积分:1
-
dcp
说明: 基于暗通道先验的但图像去雾,暗通道先验就是基于这样一个假设:在绝大多数非天空的局部区域里,某一些像素总会有至少一个颜色通道具有很低的值。(Single Image Haze Removal Using Dark Channel Prior.)
- 2019-05-15 14:16:41下载
- 积分:1
-
skincolor-segment
很好用的肤色分割模型,在YCBCR颜色空间内分割,经过开运算和闭运算,取得很好的结果(Good use of color segmentation model, YCBCR color space segmentation, after opening operation and closing operation, and achieved good results)
- 2011-08-15 15:53:09下载
- 积分:1
-
灰度图像的盲复原问题进行了一些研究 PSF
本文针对灰度图像的盲复原问题进行了一些研究,介绍了两种不同的图像盲复
原处理的方法。一种是误差一参数分析法,该方法适合于辨识可以用参数来表征的
点扩散函数,如线性移动模型和Gauss模型等,然后根据估计的参数确定退化图像
的点扩’散函数,再利用常规的复原算法(如维纳滤波法)对退化图像进行复原处理
另一种是非负支撑域约束递归逆滤波(NAS-R工F)算法,文中介绍了NAS-R工F算法
的基本思想,并结合正则化的思想,提出了NAS-RIF的改进算法,相应对该算法的
性能效果进行了仿真分析。
1.图像去噪MATLAB仿真程序.m
2.图像点扩展函数获取MATLAB仿真程序.m
3.约束最小二乘法图像复原MATLAB仿真程序.m()
- 2020-11-09 12:59:46下载
- 积分:1
-
unet-master 2
说明: 使用unet对图像进行分割的源码,里面有训练集,可以根据自己的需要更换训练数据。(Use the source code of the image segmentation using UNET, which has a training set, you can change the training data according to your own needs.)
- 2020-06-29 21:22:43下载
- 积分:1
-
powell
powell刚性图像配准,c++代码,通过查找非相关方向进行配准.(Polwell rigid image registration, c++ code, by looking for non-related directions for registration.)
- 2020-06-16 10:20:01下载
- 积分:1
-
chenggongchengxu
rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h"
#include <iostream.h>
void main(float R, float G, float B, float& H, float& S, float&V)
{
// r,g,b values are from 0 to 1
// h = [0,360], s = [0,1], v = [0,1]
// if s == 0, then h =-1 (undefined)
float min, max, delta,tmp
tmp = R>G?G:R
min = tmp>B?B:tmp
tmp = R>G?R:G
max = tmp>B?tmp:B
V = max // v
delta = max- min
if( max != 0 )
S = delta/max // s
else
{
// r = g = b = 0 // s = 0, v is undefined
S = 0
H = 0
return
}
if (delta == 0){
H = 0
return
}
else if(R == max){
if (G >= B)
H = (G- B)/delta // between yellow & magenta
else
H = (G- B)/delta+ 6
}
else if( G == max )
H = 2+ ( B- R )/delta // between cyan & yellow
else if (B == ma)
- 2011-12-02 10:09:24下载
- 积分:1
-
ImageProcessing
自己编写的图像处理函数,包括绘制直方图,直方图规定化,直方图均衡化,具体算法参阅章章毓晋. 图像工程(上册)——图像处理(第二版)[M]. 清华大学出版社(Write your own image processing functions, including the plot histogram, histogram specification, histogram equalization, the specific algorithm see chapter Yu-Jin. Image Engineering (on)- Image Processing (Second Edition) [M]. Qinghua University Publishing society)
- 2010-05-30 06:06:02下载
- 积分:1
-
fusion
图像融合的算法集锦,遥感图像的小波融合等(Image fusion algorithm Collection, remote sensing image wavelet fusion)
- 2020-12-21 19:29:07下载
- 积分:1