-
picture_interpolation_handle
说明: 包括几种基于多项式插值的图像处理matlab代码,包括双三次插值,样条差值等(Includes several image processing based on polynomial interpolation matlab code, including double-cubic interpolation, spline difference, etc.)
- 2011-04-01 15:14:20下载
- 积分:1
-
ENVIMNFTrans
高光谱图像进行MNF变换,采用MAF评价图像的噪声;处理过程与ENVI软件中的完全一样。(MNF transformation of hyperspectral images, using noise MAF to evaluate the image.the process is exactly the same with ENVI software .)
- 2014-07-21 10:29:49下载
- 积分:1
-
fenqusuanfa
数字全息分区算法模拟,用于从一副同轴全息图中恢复出物体的像(digital holography)
- 2021-04-18 16:38:52下载
- 积分:1
-
ikmeans
说明: 利用ikmeans算法实现图像分割matlab代码(ikmeans algorithm to deal image segmentation)
- 2020-09-22 10:55:52下载
- 积分: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
-
图像灰度处理
对加载的图像进行灰度处理,简单处理matlab程序,效果不错,利于后面对图形进一步加工处理(Gray-scale processing of loaded images)
- 2019-06-18 08:06:13下载
- 积分:1
-
CorrelationCoefficient
有关于求取图像相关系数的matlab M 文件;虽然很简单,但可以为你省去那么一点时间。 共享改变未来!(Correlation coefficient on the strike' s matlab M image file although very simple, but it can save you some time. Share changes in the future!)
- 2011-06-03 10:48:58下载
- 积分:1
-
bianhuan
利用霍夫变换检测直线,园,椭圆,曲线,简单有效,用用方便(Using Hough transform to detect straight lines, park, oval, curve, simple, effective, easy to use with)
- 2011-04-26 10:53:12下载
- 积分:1
-
gbvs
静态图像显著性分析程序,利用matlab开发。加州理工三位教授所写。(Software] Saliency Map Algorithm : MATLAB Source Code
Below is MATLAB code which computes a salience/saliency map for an image or image sequence/video (either Graph-Based Visual Saliency (GBVS) or the standard Itti, Koch, Niebur PAMI 1998 saliency map). See the included readme file for details. I also have a newer, simpler version implementing only the Itti algorithm (see simpsal/readme.txt).
Please try it out and email me if you have any questions.
Download:
Please select one of the following to download:
[gbvs.zip]
This package includes an implementation of the full GBVS algorithm. It also lets you compute an Itti, Koch, Niebur saliency map. It includes a function for computing the ROC score between eye-movements (provided as x,y fixation points) and a saliency map, and a function for displaying a saliency map overlayed on top of an image (as in the screenshot below).
Right after you download the zip file, you must change into the gbvs/ directory and run:
>>)
- 2011-09-11 15:56:18下载
- 积分:1
-
145
一个很好类子来说明类模板的使用,可以比较明了类模板的使用方法,最好进行单步调试(use of class template )
- 2013-08-30 17:17:58下载
- 积分:1