登录
首页 » matlab » iso2mesh-0.8.0

iso2mesh-0.8.0

于 2009-05-16 发布 文件大小:5469KB
0 145
下载积分: 1 下载次数: 53

代码说明:

  基于matlab的二维与三维的建模,里面许多工具函数(Matlab-based two-dimensional and three-dimensional modeling, a number of tools which function)

文件列表:

iso2mesh
........\htm" target=_blank>AUTHOR
........\bbxflatsegment.m
........\bin
........\...\cgalsimp2.exe
........\...\cgalsimp2.mexglx
........\...\cgalsimp2.mexmac
........\...\cgalsurf.exe
........\...\cgalsurf.mexglx
........\...\cgalsurf.mexmac
........\...\gmp-vc80-mt.dll
........\...\meshfix.exe
........\...\meshfix.mexa64
........\...\meshfix.mexglx
........\...\meshfix.mexmac
........\...\mpfr-vc80-mt.dll
........\...\tetgen.exe
........\...\tetgen.mexa64
........\...\tetgen.mexglx
........\...\tetgen.mexmac
........\...\tetview.exe
........\...\tetview.mexglx
........\binsurface.m
........\bwislands.m
........\htm" target=_blank>ChangeLog
........\htm" target=_blank>COPYING
........\deislands2d.m
........\deislands3d.m
........\delendelem.m
........\deletemeshfile.m
........\doc
........\...\Download_and_License.txt
........\...\FAQ.txt
........\...\gendoc.sh
........\...\Get_Started.txt
........\...\INSTALL.txt

........\extractloops.m
........\fillholes3d.m
........\finddisconnsurf.m
........\flatsegment.m
........\getexeext.m
........\getintersecttri.m
........\getplanefrom3pt.m
........\getvarfrom.m
........\imedge3d.m
........\internalpoint.m
........\isoctavemesh.m
........\maxsurf.m
........\mcpath.m
........\meshcentroid.m
........\meshcheckrepair.m
........\meshconn.m
........\meshresample.m
........\mwpath.m
........\neighborelem.m
........\orderloopedge.m
........\qmeshcut.m
........\readasc.m
........\readinr.m
........\htm" target=_blank>README
........\readoff.m
........\readsmf.m
........\readtetgen.m
........\removedupelem.m
........\removedupnodes.m
........\removeisolatednode.m
........\removeisolatedsurf.m
........\s2m.m
........\sample
........\......\brain.tif
........\......\demo_grayscale_ex1.m
........\......\demo_qmeshcut_ex1.m
........\......\demo_shortcut_ex1.m
........\......\demo_surf2mesh_ex1.m
........\......\demo_vol2mesh_ex1.m
........\......\demo_vol2mesh_ex1b.m
........\......\demo_vol2mesh_ex2.m
........\......\demo_vol2mesh_ex3.m
........\......\head.tif
........\......\iso2mesh_bar.tif
........\......\sampleVol2Mesh.mat
........\......\surfmesh_demo.mat
........\saveasc.m
........\saveinr.m
........\saveoff.m
........\savesmf.m
........\savesurfpoly.m
........\smoothbinvol.m
........\smoothsurf.m
........\surf2mesh.m
........\surfaceclean.m
........\surfdiffuse.m
........\surfedge.m
........\thickenbinvol.m
........\htm" target=_blank>TODO
........\v2m.m
........\v2s.m
........\vol2mesh.m
........\vol2restrictedtri.m

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

发表评论

0 个回复

  • jull
    模糊C均值聚类(FCM),即众所周知的模糊ISODATA,是用隶属度确定每个数据点属于某个聚类的程度的一种聚类算法。(Fuzzy C means clustering (FCM), known as fuzzy ISODATA, is used to determine membership of each data point belongs to a cluster of a clustering algorithm level.)
    2010-05-12 15:39:30下载
    积分:1
  • CashCode.Net.Source
    CashCode protocol Visual Studio
    2014-10-28 07:34:14下载
    积分:1
  • cut001
    自己写的程序,处理人体三维数据手部数据时,进行指节切割(Write their own procedures when dealing with three-dimensional data of human hand data, knuckles cut)
    2015-04-05 11:20:59下载
    积分:1
  • MATLAB
    应用MATLAB软件制作一个GUI操作界面(Application of MATLAB software to create a GUI interface)
    2010-12-22 09:59:52下载
    积分:1
  • MATLAB-statistics-40cases
    matlab统计分析的40个案例分析,欢迎交流(matlab statistical analysis of 40 case studies, welcomed the exchange)
    2011-06-21 16:37:18下载
    积分:1
  • laplace_2D
    this is Laplace 2D . i solve with Jacobi Iteration method ,Point Gauss-seidel Interation method,Line Gauss-Seidel Iteration method ,Point Successive Over-Relaxation method (PSOR),Line Successive Over-Relaxation method (LSOR)
    2013-05-03 15:30:46下载
    积分:1
  • ali-mohamadi
    develop controler for wind turbine
    2013-08-12 20:07:08下载
    积分:1
  • beam-forming
    多波束形成的代码,其中也有一些自适应的波束形成代码(beam forming)
    2013-09-17 20:30:02下载
    积分:1
  • 1
    说明:  matlab使用垂直Sobel算子,自动选择阈值 [VSFAT Threshold]=edge(f, sobel , vertical ) 边缘探测 figure,imshow(f),title( 原始图像 ), 显示原始图像 figure,imshow(VSFAT),title( 垂直图像边缘检测 ) 显示边缘探测图像 使用水平和垂直Sobel算子,自动选择阈值 SFST=edge(f, sobel ,2) figure,imshow(SFST),title( 水平和垂直图像边缘检测 ) 显示边缘探测图像 使用指定45度角 Sobel算子滤波器,指定阈值 s45=[-2 -1 0 -1 0 1 0 1 2] SFST45=imfilter(f,s45, replicate ) SFST45=SFST45>=2 figure,imshow(SFST45),title( 45度角图像边缘检测 ) 显示边缘探测图像 (matlab I=rgb2gray(I0) J0=double(I) [VSFAT Threshold]=edge(f, sobel , vertical ) figure,imshow(f),title figure,imshow(VSFAT),title)
    2013-12-18 15:42:14下载
    积分:1
  • jisuanqi
    基于matlab GUI的一个简单计算机系统,能实现加减乘除等简单算法(A simple matlab GUI based computer system, to achieve a simple algorithm for addition, subtraction, etc.)
    2013-12-23 13:25:31下载
    积分:1
  • 696518资源总数
  • 106164会员总数
  • 18今日下载