Skip to content

Commit

Permalink
remove segment module
Browse files Browse the repository at this point in the history
  • Loading branch information
drombas committed Jan 23, 2024
1 parent 2961cf4 commit 248ce51
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions startup.m
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
% Set-up RETIMAT by adding relevant folders to MATLAB search path
%
% David Romero-Bascones, [email protected]
% Biomedical Engineering Department, Mondragon Unibertsitatea, 2022
% Biomedical Engineering Department, Mondragon Unibertsitatea, 2024

try
addfcn = @(x) addpath([pwd '/src/' x]);
wdir = replace(which(mfilename), 'startup.m', '');

addfcn = @(x) addpath(fullfile(wdir, 'src', x));

addfcn('io');
addfcn('reflectance');
addfcn('segment');
% addfcn('segment');
addfcn('spatial');
addfcn('structure');
addfcn('texture');
Expand Down

0 comments on commit 248ce51

Please sign in to comment.