-
Notifications
You must be signed in to change notification settings - Fork 6
/
startup.m
24 lines (21 loc) · 996 Bytes
/
startup.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
function startup()
% startup()
% --------------------------------------------------------
% Faster R-CNN
% Copyright (c) 2015, Shaoqing Ren
% Licensed under The MIT License [see LICENSE for details]
% --------------------------------------------------------
curdir = fileparts(mfilename('fullpath'));
addpath(fullfile(curdir, 'functions', 'nms'));
addpath(fullfile(curdir, 'functions', 'rcnn'));
addpath(fullfile(curdir, 'functions', 'rpn'));
addpath(fullfile(curdir, 'functions', 'utils'));
addpath(fullfile(curdir, 'functions', 'nms', 'bin'));
addpath(fullfile(curdir, 'functions', 'cityscapes'));
addpath(fullfile(curdir, 'experiments'));
addpath(fullfile(curdir, 'external/cityscapesScripts'));
addpath(fullfile(curdir, 'external/caffe/matlab/'));
addpath(fullfile(curdir, 'external/citypersons/'));
addpath(fullfile(curdir, 'external', 'caltech_toolbox'));
addpath(genpath(fullfile(curdir, 'external', 'pdollar_toolbox')));
end