source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/image3dstiching/useful/calDepthError.m @ 37

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

Added original make3d

File size: 4.6 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% */
39Fdir ='/afs/cs/group/reconstruction3d/scratch/TestMultipleImage/ImgWithLaserData/'
40Img1 = 'img-manmade6-p-107t0'
41Img2 = 'img-manmade7-p-343t0'
42
43Default.fy = 2400.2091651084;
44Default.fx = 2407.3312729885838;
45Default.Ox = 1110.7122391785729;%2272/2; %
46Default.Oy = 833.72104535435108;%1704/2; %
47Default.a_default = 2272/Default.fx; %0.70783777; %0.129; % horizontal physical size of image plane normalized to focal length (in meter)
48Default.b_default = 1704/Default.fy; %0.946584169;%0.085; % vertical physical size of image plane normalized to focal length (in meter)
49Default.Ox_default = 1-Default.Ox/2272;%0.489272914; % camera origin offset from the image center in horizontal direction
50Default.Oy_default = 1-Default.Oy/1704;%0.488886982; % camera origin offset from the image center in vertical direction
51
52load([ Fdir '/data/depth_sph_corr-manmade6-p-107t0.mat']);
53LaserDepth1 = Position3DGrid(:,:,4);
54
55load([ Fdir '/data/depth_sph_corr-manmade7-p-343t0.mat']);
56LaserDepth2 = Position3DGrid(:,:,4);
57[Default.VertYNuDepth Default.HoriXNuDepth] = size( LaserDepth1);
58GoodMask = LaserDepth1 <80;
59
60load([ Fdir '/data/'  Img1 '/Multi_TestLaserImg_img-manmade6-p-107t0_NonMono.mat' ]);
61TriDepth1 = model.Constrain.Depth_modified;
62[IND1] = ProjPosi2Mask( [2272 1704], [55 305], Pair.Xim([1 2],:));
63[ReScale] = Rescale(TriDepth1, LaserDepth1(IND1));
64TriDepth1 = TriDepth1*ReScale;
65MonoDepth1 = model.Depth.FitDepth;
66[ReScale] = Rescale(MonoDepth1, LaserDepth1);
67MonoDepth1 = ReScale*MonoDepth1;
68JointDepth1 = model.PlaneParaInfo.FitDepth;
69[ReScale] = Rescale(JointDepth1, LaserDepth1);
70JointDepth1 = ReScale*JointDepth1;
71
72[ Mrms Mabs_m Mrms_f Mabs_m_f] = errorMetric( MonoDepth1(GoodMask), LaserDepth1(GoodMask))
73[ Jrms Jabs_m Jrms_f Jabs_m_f] = errorMetric( JointDepth1(GoodMask), LaserDepth1(GoodMask))
74[ Trms Tabs_m Trms_f Tabs_m_f] = errorMetric( TriDepth1(:), LaserDepth1(IND1)')
75
76% [ rms abs_m rms_f abs_m_f] = errorMetric(D1, LaserDepth1)
77
78load([ Fdir '/data/'  Img2 '/Multi_TestLaserImg_img-manmade7-p-343t0_NonMono.mat' ]);
79GoodMask = LaserDepth2 <80;
80TriDepth2 = model.Constrain.Depth_modified;
81[IND2] = ProjPosi2Mask( [2272 1704], [55 305], Pair.Xim([3 4],:));
82[ReScale] = Rescale(TriDepth2, LaserDepth2(IND2));
83TriDepth2 = TriDepth2*ReScale;
84
85MonoDepth2 = model.Depth.FitDepth;
86[ReScale] = Rescale(MonoDepth2, LaserDepth2);
87MonoDepth2 = ReScale*MonoDepth2;
88JointDepth2 = model.PlaneParaInfo.FitDepth;
89[ReScale] = Rescale( JointDepth2, LaserDepth2);
90JointDepth2 = ReScale*JointDepth2;
91
92[ Mrms Mabs_m Mrms_f Mabs_m_f] = errorMetric( MonoDepth2(GoodMask), LaserDepth2(GoodMask))
93[ Jrms Jabs_m Jrms_f Jabs_m_f] = errorMetric( JointDepth2(GoodMask), LaserDepth2(GoodMask))
94[ Trms Tabs_m Trms_f Tabs_m_f] = errorMetric( TriDepth2(:), LaserDepth2(IND2)')
95
96% rescale
97scaleMono1 = sdpvar(1,1);
98sol = solvesdp([],norm( scaleMono1*MonoDepth1(:) - LaserDepth1(:),1));
Note: See TracBrowser for help on using the repository browser.