forked from chaoweifang/PFE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroot_dir.m
19 lines (19 loc) · 882 Bytes
/
root_dir.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
% ------------------------------------------------------------------------
% Copyright (C)
% Universitat Politecnica de Catalunya BarcelonaTech (UPC) - Spain
% University of California Berkeley (UCB) - USA
%
% Jordi Pont-Tuset <[email protected]>
% Pablo Arbelaez <[email protected]>
% June 2014
% ------------------------------------------------------------------------
% This file is part of the MCG package presented in:
% Arbelaez P, Pont-Tuset J, Barron J, Marques F, Malik J,
% "Multiscale Combinatorial Grouping,"
% Computer Vision and Pattern Recognition (CVPR) 2014.
% Please consider citing the paper if you use this code.
% ------------------------------------------------------------------------
function root_dir = root_dir()
% Change suggested by Ahmad Humayun <[email protected]>, thank you!
root_dir = fileparts(which(mfilename));
end