source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/LearningCode/Features/premergAllsuperpixel_efficient.m @ 37

Last change on this file since 37 was 37, checked in by (none), 14 years ago

Added original make3d

File size: 4.9 KB
Line 
1% *  This code was used in the following articles:
2% *  [1] Learning 3-D Scene Structure from a Single Still Image,
3% *      Ashutosh Saxena, Min Sun, Andrew Y. Ng,
4% *      In ICCV workshop on 3D Representation for Recognition (3dRR-07), 2007.
5% *      (best paper)
6% *  [2] 3-D Reconstruction from Sparse Views using Monocular Vision,
7% *      Ashutosh Saxena, Min Sun, Andrew Y. Ng,
8% *      In ICCV workshop on Virtual Representations and Modeling
9% *      of Large-scale environments (VRML), 2007.
10% *  [3] 3-D Depth Reconstruction from a Single Still Image,
11% *      Ashutosh Saxena, Sung H. Chung, Andrew Y. Ng.
12% *      International Journal of Computer Vision (IJCV), Aug 2007.
13% *  [6] Learning Depth from Single Monocular Images,
14% *      Ashutosh Saxena, Sung H. Chung, Andrew Y. Ng.
15% *      In Neural Information Processing Systems (NIPS) 18, 2005.
16% *
17% *  These articles are available at:
18% *  http://make3d.stanford.edu/publications
19% *
20% *  We request that you cite the papers [1], [3] and [6] in any of
21% *  your reports that uses this code.
22% *  Further, if you use the code in image3dstiching/ (multiple image version),
23% *  then please cite [2].
24% * 
25% *  If you use the code in third_party/, then PLEASE CITE and follow the
26% *  LICENSE OF THE CORRESPONDING THIRD PARTY CODE.
27% *
28% *  Finally, this code is for non-commercial use only.  For further
29% *  information and to obtain a copy of the license, see
30% *
31% *  http://make3d.stanford.edu/publications/code
32% *
33% *  Also, the software distributed under the License is distributed on an
34% * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
35% *  express or implied.   See the License for the specific language governing
36% *  permissions and limitations under the License.
37% *
38% */
39function [im, SupNeighborTable]=premergAllsuperpixel_efficient(im, Default)
40%(This is program conver a non_ordered non_connected superpixel image to
41% ordered superpixel image
42% input:
43% im = N by M matrix depends on the image size       
44% Default - Default.SmallThre = the samllest Sup size
45
46% output:
47% im_order = N by M matrix which is ordered
48
49%%%
50% For each of the superpixel indicies, finds all of the
51% disconnected components with that label.  if the component is
52% small (< 200 pixels) or isn't the biggest component with that
53% index, call analysesupinpatch with the outline of the component
54% to replace it's label with the one that is most common in the outline
55%%%
56
57if nargin <2
58   Default.SmallThre = 5; %smallest sup size
59end
60SupNeighborTableFlag = 1;
61
62[yn xn] = size(im);
63NuSup = unique(im(:))';
64SE = strel('octagon',3); 
65for i=NuSup
66
67        % label connected component
68        temp = zeros(size(im));
69        temp(im(:,:)==i)=1;
70        [L,num] = bwlabel(temp,4);
71
72        % find the main piece
73         [maxL dum]= mode(L(L~=0));
74%        his = histc(L(:), 1:num);
75%        [dum maxL ]= max(his);
76
77           if dum > Default.SmallThre;
78              SupMerg = setdiff(1:num,maxL);
79           else
80              SupMerg = 1:num;
81           end
82
83           for k = SupMerg
84               mask = L==k;
85               % then assign those pixels to mostlikely 3 by 3 neighborhood
86                mask_dilate = imdilate(mask,SE);
87%                mask_dilate = mask | [zeros(yn,1) mask(:,1:(end-1))] ...
88%                                   | [mask(:,2:(end)) zeros(yn,1)] ...
89%                                   | [zeros(1,xn) ;mask(1:(end-1),:)] ...
90%                                   | [mask(2:(end),:); zeros(1, xn)] ....
91%                                   | [[zeros(yn-1,1) mask(2:end,1:(end-1))]; zeros(1,xn)]...
92%                                   | [[mask(2:end,2:(end)) zeros(yn-1,1) ]; zeros(1,xn)]...
93%                                   | [zeros(1,xn); [zeros(yn-1,1) mask(1:(end-1),1:(end-1))]]...
94%                                   | [zeros(1,xn); [mask(1:(end-1),2:(end)) zeros(yn-1,1)]]...
95%                                   ;                         
96               mask_dilate(mask) = 0;
97%                im(mask) = analysesupinpatch(im(mask_dilate));%hard work
98               im(mask) = mode(im(mask_dilate));
99           end
100end
101
102% merge the small superpixel with the surrrounding one if it's neighbor is only one
103 MaxSupIndex = max(NuSup(:));
104 SupNeighborTable = sparse(MaxSupIndex,MaxSupIndex);
105
106if SupNeighborTableFlag
107   for i = 1:((xn-1)*yn)
108     
109       % registed the neoghbor in right
110       SupNeighborTable(im(i),im(i+yn)) = 1;
111       SupNeighborTable(im(i+yn),im(i)) = 1;
112
113       % registed the neoghbor in below
114       if mod(i,yn) ~=0
115          SupNeighborTable(im(i),im(i+1)) = 1;
116          SupNeighborTable(im(i+1),im(i)) = 1;
117       end
118   end
119
120   % find out the single neighbor ones and merge them with neighbors
121   SingleTar = sum( SupNeighborTable,1);
122   for i = find(SingleTar == 1)
123       mask = im == i;
124       im(mask) = find(SupNeighborTable(:,i) == 1);
125       SupNeighborTable(:,i) = 0;
126       SupNeighborTable(i,:) = 0;
127   end
128
129end
130return;
Note: See TracBrowser for help on using the repository browser.