-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathstartup.m
21 lines (18 loc) · 821 Bytes
/
startup.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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, 'experiments'));
addpath(fullfile(curdir, 'external/caffe/matlab/'));
addpath(fullfile(curdir, 'external', 'caltech_toolbox'));
addpath(genpath(fullfile(curdir, 'external', 'pdollar_toolbox')));
end