登录
首页 » matlab » mpiv_toolbox

mpiv_toolbox

于 2020-12-18 发布 文件大小:875KB
0 199
下载积分: 1 下载次数: 0

代码说明:

  用于粒子图像测速技术的图像处理,分析得到流场信息(Image Processing for Particle Image Velocimetry and Flow Field Information Analysis)

文件列表:

mpiv_toolbox, 0 , 2006-12-08
mpiv_toolbox\piv_windowsize.m, 2070 , 2009-07-02
mpiv_toolbox\test_findpeak2.m, 226 , 2006-12-08
mpiv_toolbox\image1.bmp, 66614 , 2002-09-20
mpiv_toolbox\vector_filter_vecstd.m, 3227 , 2009-07-02
mpiv_toolbox\image2.bmp, 66614 , 2002-09-20
mpiv_toolbox\vector_exterp_linear.m, 2257 , 2009-07-02
mpiv_toolbox\vector_filter_global.m, 1385 , 2009-07-02
mpiv_toolbox\nanmean2.m, 890 , 2009-07-02
mpiv_toolbox\mpiv_smooth.m, 1421 , 2009-07-02
mpiv_toolbox\piv_cor.m, 6256 , 2009-07-02
mpiv_toolbox\piv_crr.m, 5485 , 2009-07-02
mpiv_toolbox\piv_crs.m, 8895 , 2009-07-02
mpiv_toolbox\piv_mqd.m, 7633 , 2009-07-02
mpiv_toolbox\piv_mqr.m, 5526 , 2009-07-02
mpiv_toolbox\piv_mrs.m, 9432 , 2009-07-02
mpiv_toolbox\func_countNaN.m, 695 , 2009-07-02
mpiv_toolbox\modaldlg.m, 6571 , 2009-07-02
mpiv_toolbox\vector_interp_kriging.m, 2540 , 2009-07-02
mpiv_toolbox\vector_interp_kriging_local.m, 3647 , 2009-07-02
mpiv_toolbox\modaldlg.fig, 82784 , 2003-10-08
mpiv_toolbox\gui_confirm_mpivstart.fig, 20712 , 2003-10-08
mpiv_toolbox\vector_interp_NaN.m, 1648 , 2009-07-02
mpiv_toolbox\vector_interp.m, 1722 , 2009-07-02
mpiv_toolbox\vector_interp_linear.m, 1833 , 2009-07-02
mpiv_toolbox\vector_filter_median.m, 3282 , 2009-07-02
mpiv_toolbox\mpiv.m, 8689 , 2009-07-02
mpiv_toolbox\mpiv_vecdata.mat, 1728 , 2003-09-24
mpiv_toolbox\mpiv_doc.ps, 2422712 , 2009-07-02
mpiv_toolbox\mpiv_filter.m, 2361 , 2009-07-02
mpiv_toolbox\func_findpeak2.m, 4905 , 2009-07-02
mpiv_toolbox\mpiv_gui.m, 16742 , 2009-07-02
mpiv_toolbox\vector_check.m, 2165 , 2009-07-02
mpiv_toolbox\mpiv_vor.m, 2144 , 2009-07-02
mpiv_toolbox\vector_interp_spline.m, 1262 , 2009-07-02
mpiv_toolbox\gui_confirm_mpivstart.m, 6586 , 2009-07-02
mpiv_toolbox\func_smooth.m, 2463 , 2009-07-02
mpiv_toolbox\func_histfilter.m, 1008 , 2009-07-02
mpiv_toolbox\mpiv_gui.fig, 37760 , 2003-10-08
mpiv_toolbox\func_pivwindowsize.m, 2765 , 2009-07-02

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 基于象小波变换的象编码的经典算法SPIHT(Matlab)
    基于图象小波变换的图象编码的经典算法.程序中包括压缩和解压缩的过程,有可执行的示例.(Image-Based Wavelet Transform Image Coding Algorithm classic. Procedures, including compression and decompression process, the sample has executable.)
    2020-07-07 14:28:57下载
    积分:1
  • Image-ROI-Select
    Matlab的GUI中选择图像的感兴趣区域ROI(正方形和矩形)(Matlab GUI to select the image region of interest ROI (square and rectangular))
    2012-03-28 11:28:55下载
    积分: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
  • PSO
    说明:  实现 %1、利用RGB模型识别天空区域;2、利用边缘识别检测天空边缘分割线;3、利用预测边缘点和实际边缘点的周围区域的均值滤波与本边缘点下方的像素之间的差异大小来修正天空边缘分割线 %4、将sky_seg+depthmap_v2中多余的带注释的地方删掉了 %!!!记得在295行,一定要改动是用I6还是I7,如果用sky_initia(f = edge(double(BW),'canny',thresh,sigma);)
    2021-04-18 14:28:51下载
    积分:1
  • iris_image_segmentation
    图像分割在医学图像,智能识别上的应用,虹膜识别(Image segmentation in medical imaging, intelligent recognition on the application of iris recognition)
    2008-04-26 11:15:19下载
    积分:1
  • Tamura纹特征提取及应用的matlab代码 TTamura Textua
    Tamura纹理特征提取及应用的matlab代码,附有介绍绍Tamura纹理的文献和测试用图片。,已通过测试。 (Tamura texture feature extraction and application of the Matlab code, accompanied by Shao Tamura texture literature and test pictures. , Has been tested.)
    2012-06-09 11:36:52下载
    积分: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
  • computer_vision-master
    图像特征提取,有SIFT、BOW、VLAD、LBP、HOG、FishVector、gist、Metric、colorhist。(Image feature extraction, including SIFT, BOW, VLAD, LBP, HOG, FishVector, gist, Metric, colorhist.)
    2019-07-20 20:53:34下载
    积分:1
  • contoulet-fusion
    基于contourlet的图像融合,低频分量在融合过程中使用加权平均的融合规则(Contourlet-based image fusion, the low frequency components in the integration process using the weighted average of the fusion rules)
    2011-11-16 16:38:15下载
    积分:1
  • c#生成二维码
    通过C#生成二维码
    2014-07-07下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载