-
cell-segmentation
对细胞进行分割和追踪的代码,细胞是植物细胞,其中的两篇论文是局部图分割的经典论文,值得一看(To segmentation and tracking code of cells, cells is plant cell, two of the paper is a classic papers of local map segmentation, worth a look)
- 2014-10-27 14:17:56下载
- 积分:1
-
Producing-Letters-on-7Segment
Assembly code for interfacing a 7segment that display a random Letters.
- 2013-08-08 14:50:59下载
- 积分:1
-
points-clouds-
matlab图像处理代码,利用算法对点云数据进行直方图以及标准差统计,含M文件和GUI(matlab image processing code, the use of algorithms for point cloud data, histograms and standard deviation statistics, including documentation and GUI M)
- 2011-06-03 13:13:37下载
- 积分: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
-
MRF-ICM 也是先聚类再算的 里面有论文
利用马尔科夫随机场对图像进行语义分割,通过ICm求解参数,可以运行,对初学者有较好的借鉴作用(Using Markov random field to semantic segmentation of images, through ICm solution parameters, can run, for beginners have a good reference)
- 2017-06-22 17:40:31下载
- 积分:1
-
cs-np
基于压缩感知的图像恢复重建的实验源代码以及相关图片及文件(Compressed sensing image reconstruction experiment source code and related images and documents)
- 2013-12-21 20:12:59下载
- 积分:1
-
image-reconstruction-algorithms
一篇关于光声成像的图像重建算法研究,开发工具为matlab,罗列了很多理论知识(A photoacoustic imaging of image reconstruction algorithms, development tools matlab, listed a lot of theoretical knowledge
)
- 2011-12-29 17:02:02下载
- 积分:1
-
digital_image
数字图像处理中sobel算子的手写代码;canny手写代码;加噪声并滤波的调用库函数代码(Digital image using sobel & canny)
- 2015-11-30 20:57:03下载
- 积分:1
-
mpiv_toolbox
用于粒子图像测速技术的图像处理,分析得到流场信息(Image Processing for Particle Image Velocimetry and Flow Field Information Analysis)
- 2020-12-18 15:59:11下载
- 积分:1
-
SAR_KPCA
基于核函数的SAR图像目标识别,利用KPCA对SAR图像进行特征提取(SAR image target recognition based on kernel function,Use KPCA SAR image feature extraction)
- 2021-01-01 21:48:58下载
- 积分:1