Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
berak committed Jun 3, 2015
1 parent 850e3c1 commit 737a1e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/cpp/stereo_calib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ StereoCalib(const vector<string>& imagelist, Size boardSize, bool useCalibrated=
{
for( j = 0; j < boardSize.height; j++ )
for( k = 0; k < boardSize.width; k++ )
objectPoints[i].push_back(Point3f(j*squareSize, k*squareSize, 0));
objectPoints[i].push_back(Point3f(k*squareSize, j*squareSize, 0));
}

cout << "Running stereo calibration ...\n";
Expand Down

0 comments on commit 737a1e2

Please sign in to comment.