[8406bc]: / MATLAB / src / VSD_addPathes.m

Download this file

29 lines (22 with data), 1.0 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
function VSD_addPathes(prefix)
%VSD_ADDPATHES adds the pathes required for the VSD scripts.
%
% AUTHOR: Maximilian C. M. Fischer
% COPYRIGHT (C) 2022-2023 Maximilian C. M. Fischer
% LICENSE: EUPL v1.2
%
%% For VSD_import*
% https://github.com/MCM-Fischer/OptimizeMesh
addpath(genpath([prefix 'General\Code\optimizeMesh']))
% https://github.com/altmany/export_fig
addpath(genpath([prefix 'General\Code\#external\#Visualization\export_fig']))
%% For analyzePhantom.m
% https://github.com/mattools/matGeom
addpath(genpath([prefix 'General\Code\#external\matGeom']))
% https://github.com/MCM-Fischer/ManualFaceSelection
addpath(genpath([prefix 'General\Code\ManualFaceSelection']))
% https://github.com/MCM-Fischer/ManualLandmarkSelection
addpath(genpath([prefix 'General\Code\ManualLandmarkSelection']))
% https://www.mathworks.com/matlabcentral/fileexchange/87584-object-oriented-tools-for-fitting-conics-and-quadrics
addpath(genpath([prefix 'General\Code\#external\#Fitting\conic-fit-tools']))
end