|
@@ -1,22 +1,57 @@
|
|
function initWorkspaceWHOGeneric
|
|
function initWorkspaceWHOGeneric
|
|
|
|
|
|
|
|
+ %% setup paths in use-specific manner
|
|
|
|
+
|
|
|
|
+ if strcmp( getenv('USER'), 'freytag')
|
|
|
|
+ % dependencies go here
|
|
|
|
+ else
|
|
|
|
+ fprintf('Unknown user %s and unknown default settings', getenv('USER') );
|
|
|
|
+ end
|
|
|
|
+
|
|
|
|
|
|
%% add paths
|
|
%% add paths
|
|
|
|
|
|
|
|
+ % add main path
|
|
|
|
+ b_recursive = false;
|
|
|
|
+ b_overwrite = true;
|
|
|
|
+ s_pathMain = fullfile(pwd);
|
|
|
|
+ addPathSafely ( s_pathMain, b_recursive, b_overwrite )
|
|
|
|
+ clear ( 's_pathMain' );
|
|
|
|
+
|
|
% pre-computed data
|
|
% pre-computed data
|
|
- addpath( genpath( fullfile(pwd, 'data') ) );
|
|
|
|
|
|
+ b_recursive = true;
|
|
|
|
+ b_overwrite = true;
|
|
|
|
+ s_pathData = fullfile(pwd, 'data');
|
|
|
|
+ addPathSafely ( s_pathData, b_recursive, b_overwrite )
|
|
|
|
+ clear ( 's_pathData' );
|
|
|
|
|
|
% things for detecting objects
|
|
% things for detecting objects
|
|
- addpath( genpath( fullfile(pwd, 'detect') ) );
|
|
|
|
|
|
+ b_recursive = true;
|
|
|
|
+ b_overwrite = true;
|
|
|
|
+ s_pathDetect = fullfile(pwd, 'detect');
|
|
|
|
+ addPathSafely ( s_pathDetect, b_recursive, b_overwrite )
|
|
|
|
+ clear ( 's_pathDetect' );
|
|
|
|
|
|
% mainly HOG and scripts for image resizing
|
|
% mainly HOG and scripts for image resizing
|
|
- addpath( genpath( fullfile(pwd, 'features') ) );
|
|
|
|
|
|
+ b_recursive = true;
|
|
|
|
+ b_overwrite = true;
|
|
|
|
+ s_pathFeatures = fullfile(pwd, 'features');
|
|
|
|
+ addPathSafely ( s_pathFeatures, b_recursive, b_overwrite )
|
|
|
|
+ clear ( 's_pathFeatures' );
|
|
|
|
|
|
% everything regarding learning the actual LDA detectors
|
|
% everything regarding learning the actual LDA detectors
|
|
- addpath( genpath( fullfile(pwd, 'learn') ) );
|
|
|
|
|
|
+ b_recursive = true;
|
|
|
|
+ b_overwrite = true;
|
|
|
|
+ s_pathLearn = fullfile(pwd, 'learn');
|
|
|
|
+ addPathSafely ( s_pathLearn, b_recursive, b_overwrite )
|
|
|
|
+ clear ( 's_pathLearn' );
|
|
|
|
|
|
% path to introducing demo scripts
|
|
% path to introducing demo scripts
|
|
- addpath( genpath( fullfile(pwd, 'demos') ) );
|
|
|
|
|
|
+ b_recursive = true;
|
|
|
|
+ b_overwrite = true;
|
|
|
|
+ s_pathDemos = fullfile(pwd, 'demos');
|
|
|
|
+ addPathSafely ( s_pathDemos, b_recursive, b_overwrite )
|
|
|
|
+ clear ( 's_pathDemos' );
|
|
|
|
|
|
% minor things, e.g., warping of blocks or padding of arrays
|
|
% minor things, e.g., warping of blocks or padding of arrays
|
|
addpath( 'misc' );
|
|
addpath( 'misc' );
|
|
@@ -24,12 +59,20 @@ function initWorkspaceWHOGeneric
|
|
|
|
|
|
% read images from given filename
|
|
% read images from given filename
|
|
if (exist('readImage') ~= 2 )
|
|
if (exist('readImage') ~= 2 )
|
|
- addpath( genpath( fullfile(pwd, 'misc/imageIO') ) );
|
|
|
|
|
|
+ b_recursive = true;
|
|
|
|
+ b_overwrite = true;
|
|
|
|
+ s_pathImageIO = fullfile(pwd, 'misc/imageIO');
|
|
|
|
+ addPathSafely ( s_pathImageIO, b_recursive, b_overwrite )
|
|
|
|
+ clear ( 's_pathImageIO' );
|
|
end
|
|
end
|
|
|
|
|
|
% scripts for configuration of setting-objects
|
|
% scripts for configuration of setting-objects
|
|
if (exist('getFieldWithDefault') ~= 2 )
|
|
if (exist('getFieldWithDefault') ~= 2 )
|
|
- addpath( genpath( fullfile(pwd, 'misc/settings') ) );
|
|
|
|
|
|
+ b_recursive = true;
|
|
|
|
+ b_overwrite = true;
|
|
|
|
+ s_pathSettings = fullfile(pwd, 'misc/settings');
|
|
|
|
+ addPathSafely ( s_pathSettings, b_recursive, b_overwrite )
|
|
|
|
+ clear ( 's_pathSettings' );
|
|
end
|
|
end
|
|
|
|
|
|
%% 3rd party, untouched
|
|
%% 3rd party, untouched
|
|
@@ -37,3 +80,26 @@ function initWorkspaceWHOGeneric
|
|
% nothing needed here...
|
|
% nothing needed here...
|
|
|
|
|
|
end
|
|
end
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+function addPathSafely ( s_path, b_recursive, b_overwrite )
|
|
|
|
+ if ( ~isempty(strfind(path, [s_path , pathsep])) )
|
|
|
|
+ if ( b_overwrite )
|
|
|
|
+ if ( b_recursive )
|
|
|
|
+ rmpath( genpath( s_path ) );
|
|
|
|
+ else
|
|
|
|
+ rmpath( s_path );
|
|
|
|
+ end
|
|
|
|
+ else
|
|
|
|
+ fprintf('InitPatchDiscovery - %s already in your path but overwriting de-activated.\n', s_path);
|
|
|
|
+ return;
|
|
|
|
+ end
|
|
|
|
+ end
|
|
|
|
+
|
|
|
|
+ if ( b_recursive )
|
|
|
|
+ addpath( genpath( s_path ) );
|
|
|
|
+ else
|
|
|
|
+ addpath( s_path );
|
|
|
|
+ end
|
|
|
|
+end
|