-
fluent 中蒸发的udf
相变凝结蒸发,源项vof-udf,定义连续性方程,能量方程,动量方程中的质量源项,能量源项和动量源项(condensation and evaporation)
- 2021-04-16 20:38:53下载
- 积分:1
-
rgbquadtree
四叉树分解算法对RGB彩色图像进行分割,MATLAB代码,包括实验图片(Quad-tree decomposition algorithm RGB color image segmentation, MATLAB code, including test images)
- 2009-11-19 10:30:47下载
- 积分:1
-
zhengxuan
一款VC++图像开场加载效果,向大家演示了几种图像装载的特效实现的方法,比如扫描显示、滑动显示、渐入显示和马赛克显示等,大家在使用一些幻灯片软件的时候,经学会看到类似的效果,如果你有一定的VC++基础,你可以借鉴一下本效果的具体方法,再次扩展,可以制作出一款带特效的图像查看器(The opening loading effect of a VC++ image to demonstrate the effects achieved in several image loading, such as scanning, slide show, getting into the display and mosaic display, we learn to look at some slides software to similar effect, if you have certain VC++ basis, you can learn about the effects of specific methods, extended again, can create the image of a band effects Viewer)
- 2012-11-08 19:51:35下载
- 积分:1
-
sate_ndvi
在idl环境下批量处理提取modis ndvi数据(the program can extract the ndvi data from modis ndvi product)
- 2009-12-25 17:11:21下载
- 积分:1
-
Gimp-trainning
Gimp trainning 图形处理教程,适合自学者(Gimp trainning graphics)
- 2011-09-30 20:30:38下载
- 积分:1
-
Face_PCA
在人脸数据库中应用PCA,以及重建误差分析(Applying PCA in human face dataset and doing analysis on reconstruction differences )
- 2020-07-15 10:18:51下载
- 积分:1
-
256togray
可以将256色度级的图像转化为灰度图象,挺值得新手学习一下的,希望大家能喜欢(256 chroma level images can be converted to grayscale images, very worth novice to learn about, and I hope you like)
- 2014-04-19 14:48:30下载
- 积分:1
-
CNN
使用cnn提取图像特征,然后用SVM分类,此处没有给出训练集,另外imagenet-caffe-alex部分代码需要注意,需要下载的话把注释掉的代码打开(Using CNN image feature extraction, and then use the SVM classification, there were no given training set, also need to pay attention to imagenet-caffe-alex part of the code, you need to download the commented code open)
- 2021-02-20 21:19:42下载
- 积分: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
-
cx
说明: 基于自适应α-β滤波器的接收机跟踪环多普勒自补偿算法(Based on adaptive alpha beta filter satellite receiver loop of the doppler compensation algorithm design)
- 2015-09-11 13:16:35下载
- 积分:1