-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Empty UCMs fixed for the full package
Fixes #2
- Loading branch information
1 parent
e0abd46
commit 0d6aa1c
Showing
4 changed files
with
108 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
% ------------------------------------------------------------------------ | ||
% 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. | ||
% ------------------------------------------------------------------------ | ||
% Test robustness to empty ucms | ||
% ------------------------------------------------------------------------ | ||
|
||
% Empty input image | ||
I = zeros(40,80); | ||
|
||
candidates_scg = im2mcg(I,'fast'); | ||
candidates_mcg = im2mcg(I,'accurate'); |