File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -209,8 +209,8 @@ int main( int argc, char** argv )
209
209
MDetector.detect (InImage,Markers);
210
210
if (Markers.size () != 1 ) continue ;
211
211
212
- cv:: vector<cv::Point2f> ptsP;
213
- cv:: vector<cv::Point2f> ptsI;
212
+ vector<cv::Point2f> ptsP;
213
+ vector<cv::Point2f> ptsI;
214
214
ptsI.push_back (cv::Point2f (Markers[0 ][0 ].x , Markers[0 ][0 ].y ));
215
215
ptsI.push_back (cv::Point2f (Markers[0 ][1 ].x , Markers[0 ][1 ].y ));
216
216
ptsI.push_back (cv::Point2f (Markers[0 ][2 ].x , Markers[0 ][2 ].y ));
@@ -300,7 +300,7 @@ int main( int argc, char** argv )
300
300
{
301
301
int idxS = (x<gw ? x : gw-1 )+(y<gh ? y : gh-1 )*gw;
302
302
int idxT = ((x+10 )<gw ? (x+10 ) : gw-1 )+(y<gh ? y : gh-1 )*gw;
303
-
303
+
304
304
int u_dS = plane2imgX[idxS]+0.5 ;
305
305
int v_dS = plane2imgY[idxS]+0.5 ;
306
306
You can’t perform that action at this time.
0 commit comments