| 
									
										
										
										
											2015-01-14 05:33:47 +08:00
										 |  |  | function pts2dTracksMono = points2DTrackMonocular(K, cameraPoses, imageSize, cylinders)
 | 
					
						
							| 
									
										
										
										
											2015-01-12 12:20:50 +08:00
										 |  |  | % Assess how accurately we can reconstruct points from a particular monocular camera setup.  | 
					
						
							|  |  |  | % After creation of the factor graph for each track, linearize it around ground truth.  | 
					
						
							|  |  |  | % There is no optimization | 
					
						
							|  |  |  | % @author: Zhaoyang Lv | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import gtsam.* | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | %% create graph | 
					
						
							|  |  |  | graph = NonlinearFactorGraph; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-13 12:27:06 +08:00
										 |  |  | %% create the noise factors | 
					
						
							| 
									
										
										
										
											2015-01-12 12:20:50 +08:00
										 |  |  | poseNoiseSigmas = [0.001 0.001 0.001 0.1 0.1 0.1]'; | 
					
						
							|  |  |  | posePriorNoise  = noiseModel.Diagonal.Sigmas(poseNoiseSigmas); | 
					
						
							| 
									
										
										
										
											2015-01-14 12:25:44 +08:00
										 |  |  | measurementNoiseSigma = 1.0; | 
					
						
							| 
									
										
										
										
											2015-01-13 12:27:06 +08:00
										 |  |  | measurementNoise = noiseModel.Isotropic.Sigma(2, measurementNoiseSigma); | 
					
						
							| 
									
										
										
										
											2015-01-12 12:20:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-14 05:33:47 +08:00
										 |  |  | cameraPosesNum = length(cameraPoses); | 
					
						
							| 
									
										
										
										
											2015-01-13 05:10:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | %% add measurements and initial camera & points values | 
					
						
							|  |  |  | pointsNum = 0; | 
					
						
							|  |  |  | cylinderNum = length(cylinders); | 
					
						
							| 
									
										
										
										
											2015-01-15 12:37:10 +08:00
										 |  |  | points3d = cell(0); | 
					
						
							| 
									
										
										
										
											2015-01-13 05:10:49 +08:00
										 |  |  | for i = 1:cylinderNum | 
					
						
							| 
									
										
										
										
											2015-01-15 12:37:10 +08:00
										 |  |  |     cylinderPointsNum = length(cylinders{i}.Points); | 
					
						
							|  |  |  |     pointsNum = pointsNum + cylinderPointsNum;  | 
					
						
							|  |  |  |     for j = 1:cylinderPointsNum | 
					
						
							|  |  |  |         points3d{end+1}.data = cylinders{i}.Points{j}; | 
					
						
							|  |  |  |         points3d{end}.Z = cell(0); | 
					
						
							| 
									
										
										
										
											2015-01-23 05:53:36 +08:00
										 |  |  |         points3d{end}.camConstraintIdx = cell(0); | 
					
						
							|  |  |  |         points3d{end}.added = cell(0); | 
					
						
							| 
									
										
										
										
											2015-01-15 12:37:10 +08:00
										 |  |  |         points3d{end}.visiblity = false; | 
					
						
							| 
									
										
										
										
											2015-01-23 04:00:21 +08:00
										 |  |  |         points3d{end}.cov = cell(cameraPosesNum); | 
					
						
							| 
									
										
										
										
											2015-01-15 12:37:10 +08:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2015-01-13 05:10:49 +08:00
										 |  |  | end | 
					
						
							| 
									
										
										
										
											2015-01-12 12:20:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-15 12:37:10 +08:00
										 |  |  | graph.add(PriorFactorPose3(symbol('x', 1), cameraPoses{1}, posePriorNoise)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-23 04:00:21 +08:00
										 |  |  | %% initialize graph and values | 
					
						
							| 
									
										
										
										
											2015-01-12 12:20:50 +08:00
										 |  |  | initialEstimate = Values; | 
					
						
							| 
									
										
										
										
											2015-01-23 04:00:21 +08:00
										 |  |  | for i = 1:pointsNum | 
					
						
							|  |  |  |     point_j = points3d{i}.data.retract(0.1*randn(3,1)); | 
					
						
							|  |  |  |     initialEstimate.insert(symbol('p', i), point_j);  | 
					
						
							|  |  |  | end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pts3d = cell(cameraPosesNum, 1); | 
					
						
							|  |  |  | cameraPosesCov = cell(cameraPosesNum, 1); | 
					
						
							| 
									
										
										
										
											2015-01-23 05:53:36 +08:00
										 |  |  | marginals = Values; | 
					
						
							| 
									
										
										
										
											2015-01-23 04:00:21 +08:00
										 |  |  | for i = 1:cameraPosesNum      | 
					
						
							| 
									
										
										
										
											2015-01-14 13:08:35 +08:00
										 |  |  |     cameraPose = cameraPoses{i};     | 
					
						
							| 
									
										
										
										
											2015-01-14 05:33:47 +08:00
										 |  |  |     pts3d{i} = cylinderSampleProjection(K, cameraPose, imageSize, cylinders); | 
					
						
							| 
									
										
										
										
											2015-01-13 12:27:06 +08:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2015-01-14 13:08:35 +08:00
										 |  |  |     measurementNum = length(pts3d{i}.Z); | 
					
						
							|  |  |  |     for j = 1:measurementNum | 
					
						
							| 
									
										
										
										
											2015-01-15 12:37:10 +08:00
										 |  |  |         index = pts3d{i}.overallIdx{j}; | 
					
						
							|  |  |  |         points3d{index}.Z{end+1} = pts3d{i}.Z{j}; | 
					
						
							| 
									
										
										
										
											2015-01-23 05:53:36 +08:00
										 |  |  |         points3d{index}.camConstraintIdx{end+1} = i; | 
					
						
							|  |  |  |         points3d{index}.added{end+1} = false; | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         if length(points3d{index}.Z) < 2 | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             for k = 1:length(points3d{index}.Z) | 
					
						
							|  |  |  |                 if ~points3d{index}.added{k}                 | 
					
						
							|  |  |  |                     graph.add(GenericProjectionFactorCal3_S2(points3d{index}.Z{k}, ... | 
					
						
							|  |  |  |                         measurementNoise, symbol('x', points3d{index}.camConstraintIdx{k}), ... | 
					
						
							|  |  |  |                         symbol('p', index), K) ); | 
					
						
							|  |  |  |                     points3d{index}.added{k} = true; | 
					
						
							|  |  |  |                 end | 
					
						
							|  |  |  |             end | 
					
						
							|  |  |  |         end  | 
					
						
							| 
									
										
										
										
											2015-01-23 04:00:21 +08:00
										 |  |  |          | 
					
						
							| 
									
										
										
										
											2015-01-23 05:53:36 +08:00
										 |  |  |         points3d{index}.visiblity = true;     | 
					
						
							| 
									
										
										
										
											2015-01-13 05:10:49 +08:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2015-01-13 12:27:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-14 05:33:47 +08:00
										 |  |  |     pose_i = cameraPoses{i}.retract(0.1*randn(6,1)); | 
					
						
							| 
									
										
										
										
											2015-01-13 12:27:06 +08:00
										 |  |  |     initialEstimate.insert(symbol('x', i), pose_i);     | 
					
						
							| 
									
										
										
										
											2015-01-15 12:37:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-23 04:00:21 +08:00
										 |  |  |     marginals = Marginals(graph, initialEstimate); | 
					
						
							| 
									
										
										
										
											2015-01-23 05:53:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-23 04:00:21 +08:00
										 |  |  |     for j = 1:pointsNum | 
					
						
							|  |  |  |         if points3d{j}.visiblity | 
					
						
							|  |  |  |             points3d{j}.cov{i} = marginals.marginalCovariance(symbol('p',j)); | 
					
						
							| 
									
										
										
										
											2015-01-15 12:37:10 +08:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2015-01-13 12:27:06 +08:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2015-01-23 05:53:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-23 04:00:21 +08:00
										 |  |  |     cameraPosesCov{i} = marginals.marginalCovariance(symbol('x',i)); | 
					
						
							| 
									
										
										
										
											2015-01-23 05:53:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-12 12:20:50 +08:00
										 |  |  | end | 
					
						
							| 
									
										
										
										
											2015-01-23 04:00:21 +08:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2015-01-13 05:10:49 +08:00
										 |  |  | %% Print the graph | 
					
						
							|  |  |  | graph.print(sprintf('\nFactor graph:\n')); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-23 04:00:21 +08:00
										 |  |  | %% Plot the result | 
					
						
							|  |  |  | plotFlyingResults(points3d, cameraPoses, cameraPosesCov, cylinders, options); | 
					
						
							| 
									
										
										
										
											2015-01-12 12:20:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-14 00:34:24 +08:00
										 |  |  | %% get all the points track information | 
					
						
							| 
									
										
										
										
											2015-01-15 12:37:10 +08:00
										 |  |  | for i = 1:pointsNum | 
					
						
							| 
									
										
										
										
											2015-01-15 14:19:21 +08:00
										 |  |  |     if ~points3d{i}.visiblity | 
					
						
							|  |  |  |         continue; | 
					
						
							| 
									
										
										
										
											2015-01-15 12:37:10 +08:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2015-01-15 14:19:21 +08:00
										 |  |  |      | 
					
						
							|  |  |  |     pts2dTracksMono.pt3d{end+1} = points3d{i}.data; | 
					
						
							|  |  |  |     pts2dTracksMono.Z{end+1} = points3d{i}.Z; | 
					
						
							| 
									
										
										
										
											2015-01-15 12:37:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-15 14:19:21 +08:00
										 |  |  |     if length(points3d{i}.Z) == 1 | 
					
						
							|  |  |  |         %pts2dTracksMono.cov{i} singular matrix  | 
					
						
							|  |  |  |     else  | 
					
						
							|  |  |  |         pts2dTracksMono.cov{end+1} = marginals.marginalCovariance(symbol('p', i));     | 
					
						
							| 
									
										
										
										
											2015-01-14 00:34:24 +08:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2015-01-12 12:20:50 +08:00
										 |  |  | end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | end |