⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 triangulatepoints.m

📁 该文件是用matlab开发的图论分析工具箱
💻 M
字号:
function [edges,faces]=triangulatepoints(points)%function [edges, faces]=triangulatepoints(points) inputs a point set%and outputs a list of edges corresponding to the Delaunay triangulation%%Inputs:    points - A NxP list of N vertex locations %%Outputs:   edges - A Mx2 list of M edges indexing into points%           faces - A Qx(P+1) list of R simplices%%%Note: Function runs faster if MEXed version of triangle.c is used.  Change line %commenting as directed if the MEXed version of triangle.c is installed.%%%5/15/03 - Leo Grady% Copyright (C) 2002, 2003 Leo Grady <lgrady@cns.bu.edu>%   Computer Vision and Computational Neuroscience Lab%   Department of Cognitive and Neural Systems%   Boston University%   Boston, MA  02215%% This program is free software; you can redistribute it and/or% modify it under the terms of the GNU General Public License% as published by the Free Software Foundation; either version 2% of the License, or (at your option) any later version.%% This program is distributed in the hope that it will be useful,% but WITHOUT ANY WARRANTY; without even the implied warranty of% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the% GNU General Public License for more details.%% You should have received a copy of the GNU General Public License% along with this program; if not, write to the Free Software% Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.%% Date - $Id: triangulatepoints.m,v 1.2 2003/08/21 17:29:29 lgrady Exp $%========================================================================%%Find Delaunay simplices[N P]=size(points);if P == 2%Uncomment if the MEX version of triangle.c is installed%    triStruct.pl=points';%    outStruct=triangle(triStruct,'Qe');%    edges=outStruct.el';%    faces=outStruct.tl';%    return    faces=delaunay(points(:,1),points(:,2)); %Comment out if triangle.c installedelseif P == 3    faces=delaunay3(points(:,1),points(:,2),points(:,3));else    faces=delaunayn(points);end%Create edge listedges=[];for k=1:P    for s=(k+1):(P+1)        edges=[edges;[faces(:,k),faces(:,s)]];    endend    %Remove duplicate edgesW=adjacency(edges);edges=adjtoedges(W);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -