source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/LearningCode/Useful/OldVersion/gen_Popup.m

Last change on this file 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 []=gen_Popup(sigm,k,minValue,MaxSize);
40
41% This function generate the photopopup from the cmu software
42% for comparison purpose
43% Also it generate the labeled image fro sky and ground
44
45% Not to be used during inference.
46% Generate Sky Mask using our features, and their+our data
47
48%%%
49% For each image in filename, run the CMU photopopup.  Read in the
50% labeling and extract ground and sky labels.  save both the full
51% size and VertYNuDepth x HoriXNuDepth labels to
52% scratch/data/MaskGSky.mat and MaskGSkyMaxSize.mat
53%%%
54
55% declaim global variable
56global GeneralDataFolder ScratchDataFolder LocalFolder ClusterExecutionDirectory...
57    ImgFolder VertYNuPatch VertYNuDepth HoriXNuPatch HoriXNuDepth a_default b_default Ox_default Oy_default...
58    Horizon_default filename batchSize NuRow_default SegVertYSize SegHoriXSize PopUpVertY PopUpHoriX taskName;
59
60RunPopUp = true;
61%load([ScratchDataFolder '/data/MaskGSky.mat']);
62
63% prepare env setting for runing CMU's software
64%origHome=matlabroot;
65system('setenv MATLABROOT /afs/cs.stanford.edu/package/matlab-r14sp3/matlab/r14sp3');
66system('setenv LD_LIBRARY_PATH $MATLABROOT/sys/os/glnx86:$MATLABROOT/bin/glnx86:$MATLABROOT/sys/java/jre/glnx86/jre1.5.0/lib/i386/native_threads:$MATLABROOT/sys/java/jre/glnx86/jre1.5.0/lib/i386/client:$MATLABROOT/sys/java/jre/glnx86/jre1.5.0/lib/i386');
67system('setenv XAPPLRESDIR $MATLABROOT/X11/app-defaults');
68
69% change directory to run CMU's code
70cd([ScratchDataFolder '/../Popup']);
71
72NuPics = size(filename,2);
73for i = 1:NuPics
74    %newfilename = strrep(filename{i},'.jpg','');
75    newfilename = strrep(filename{i},'.','');
76    % running the cmu software in unix
77 if RunPopUp
78    unix(['mkdir ' ScratchDataFolder '/popup/' filename{i}]);
79    system([LocalFolder '/../third_party/PhotoPopUp/photoPopup ./classifiers_08_22_2005.mat ' '../' taskName '/ppm/' newfilename '.jpg ' ' ppm ' ScratchDataFolder '/popup/' filename{i}]);
80 end   
81    % start getting out the sky and ground mask
82    %LableImgName = strrep(newfilename,'.','');
83    imgLabel = imread([ScratchDataFolder '/popup/' filename{i} '/' newfilename '.l.jpg'],'jpg');
84    maskgTemp = imgLabel(:,:,2)>imgLabel(:,:,1)& imgLabel(:,:,2)>imgLabel(:,:,3) & imgLabel(:,:,2)>100;
85    maskSkyTemp = imgLabel(:,:,3)>imgLabel(:,:,1)& imgLabel(:,:,3)>imgLabel(:,:,2) & imgLabel(:,:,3)>100;
86%    if MaxSize ==0
87       maskg{i} = imresize(maskgTemp,[VertYNuDepth HoriXNuDepth],'nearest');
88       maskSky{i} = imresize(maskSkyTemp,[VertYNuDepth HoriXNuDepth],'nearest');
89%       save([ScratchDataFolder '/data/MaskGSky.mat'],'maskg','maskSky');
90%    else
91       maskgMaxSize{i} = maskgTemp;
92       maskSkyMaxSize{i} = maskSkyTemp;
93%       save([ScratchDataFolder '/data/MaskGSkyMaxSize.mat'],'maskgMaxSize','maskSkyMaxSize');
94%    end
95    if RunPopUp
96       % delete the ppm file of superpixel
97%       delete([ScratchDataFolder '/ppm/' newfilename '.ppm']);
98       delete([ScratchDataFolder '/ppm/' newfilename '.jpg']);
99    end
100end
101%if MaxSize ==0
102   save([ScratchDataFolder '/data/MaskGSky.mat'],'maskg','maskSky');
103%else
104   save([ScratchDataFolder '/data/MaskGSkyMaxSize.mat'],'maskgMaxSize','maskSkyMaxSize');
105%end
106
107cd([LocalFolder]);
Note: See TracBrowser for help on using the repository browser.