-
yundongtiqu
运动目标提取算法,针对多帧图像累加后运动区域的提取(Moving object extraction algorithm for multi-frame image motion region extraction after accumulation)
- 2013-06-04 11:11:06下载
- 积分:1
-
随机过程实验(研一)Random-process-experiments
随机过程实验(研一)包含的程序:离散时间马尔可夫链、连续时间马尔科夫链、布朗运动。(Random process experiments (yanyi) program included: discrete time Markov chains, continuous-time Markov chains, Brownian motion.)
- 2020-07-07 23:28:57下载
- 积分:1
-
fdk_c
FDK的C++代码,对于图像重建的人来说有用的哦(FDK s C++ code for image reconstruction for people who useful )
- 2021-04-15 21:58:54下载
- 积分: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
-
PROCESS
LabWindows /CVI 大学实验指导书,难度循序渐进,一套下来,基本操作都会了。推荐一下(LabWindows/CVI University experiment instructions, the difficulty of step-by-step, set down, the basic operation will be. You recommend)
- 2013-04-28 00:40:04下载
- 积分:1
-
MRF-based-image-segmentation
基于马尔科夫随机场的SAR图像分割方法,对应于采用最大后验概率准则对SAR目标切片图像分割,采用聚类分析算法求解。(SAR image segmentation based on Markov random fields, which corresponds to using the maximum posterior probability criteria for SAR Target Chip Image segmentation using cluster analysis algorithm for)
- 2012-07-20 18:59:55下载
- 积分:1
-
surf
这是一个surf特征匹配matlab程序,里面有实例和测试图像(This is a surf feature matching matlab program, there are examples and test images)
- 2020-12-02 11:19:26下载
- 积分:1
-
demo
说明: 一维高斯粗糙面、三维高斯粗糙面的建模,基尔霍夫近似法求散射系数(Modeling of one-dimensional Gaussian rough surface and three-dimensional Gaussian rough surface, and Kirchhoff approximation method to calculate scattering coefficient)
- 2020-11-08 17:59:48下载
- 积分:1
-
fft
利用FFT傅里叶变换,去除影像中的条带噪声(Removal of image noise)
- 2021-01-05 18:38:54下载
- 积分:1
-
SAR
SAR多普勒成像算法matlab实现以及逆合成孔径雷达回波信号成像(Matlab implementation of SAR Doppler imaging algorithm and echo signal imaging of inverse synthetic aperture radar)
- 2017-11-15 16:59:51下载
- 积分:1