HomeSort by relevance Sort by last modified time
    Searched refs:squareSize (Results 1 - 10 of 10) sorted by null

  /external/opencv3/modules/calib3d/test/
test_chessboardgenerator.hpp 22 Mat operator()(const Mat& bg, const Mat& camMat, const Mat& distCoeffs, const Size2f& squareSize, std::vector<Point2f>& corners) const;
23 Mat operator()(const Mat& bg, const Mat& camMat, const Mat& distCoeffs, const Size2f& squareSize, const Point3f& pos, std::vector<Point2f>& corners) const;
test_chessboardgenerator.cpp 244 const Size2f& squareSize, vector<Point2f>& corners) const
267 float cbHalfWidth = squareSize.width * patternSize.width * 0.5f;
268 float cbHalfHeight = squareSize.height * patternSize.height * 0.5f;
299 squareSize.width, squareSize.height, pts3d, corners);
303 const Size2f& squareSize, const Point3f& pos, vector<Point2f>& corners) const
310 float cbHalfWidth = squareSize.width * patternSize.width * 0.5f;
311 float cbHalfHeight = squareSize.height * patternSize.height * 0.5f;
330 squareSize.width, squareSize.height, pts3d, corners)
    [all...]
  /external/opencv3/samples/cpp/
calibration.cpp 61 " [-s <squareSize>] # square size in some user-defined units (1 by default)\n"
111 static void calcChessboardCorners(Size boardSize, float squareSize, vector<Point3f>& corners, Pattern patternType = CHESSBOARD)
121 corners.push_back(Point3f(float(j*squareSize),
122 float(i*squareSize), 0));
128 corners.push_back(Point3f(float((2*j + i % 2)*squareSize),
129 float(i*squareSize), 0));
139 float squareSize, float aspectRatio,
152 calcChessboardCorners(boardSize, squareSize, objectPoints[0], patternType);
172 float squareSize, float aspectRatio, int flags,
195 fs << "square_size" << squareSize;
    [all...]
3calibration.cpp 25 " [-s <squareSize>] # square size in some user-defined units (1 by default)\n"
35 static void calcChessboardCorners(Size boardSize, float squareSize, vector<Point3f>& corners)
41 corners.push_back(Point3f(float(j*squareSize),
42 float(i*squareSize), 0));
49 float squareSize, float aspectRatio,
61 calcChessboardCorners(boardSize, squareSize, objpt[0]);
180 float squareSize = 1.f, aspectRatio = 1.f;
209 if( sscanf( argv[++i], "%f", &squareSize ) != 1 || squareSize <= 0 )
295 boardSize, squareSize, aspectRatio, flags|CALIB_FIX_K4|CALIB_FIX_K5
    [all...]
select3dobj.cpp 104 static void calcChessboardCorners(Size boardSize, float squareSize, vector<Point3f>& corners)
110 corners.push_back(Point3f(float(j*squareSize),
111 float(i*squareSize), 0));
408 double squareSize = 1;
437 if(sscanf(argv[++i], "%lf", &squareSize) != 1 || squareSize <= 0)
521 calcChessboardCorners(boardSize, (float)squareSize, boardPoints);
stereo_calib.cpp 69 const float squareSize = 1.f; // Set this to your actual square size
162 objectPoints[i].push_back(Point3f(k*squareSize, j*squareSize, 0));
  /external/opencv3/samples/cpp/tutorial_code/calib3d/camera_calibration/
camera_calibration.cpp 40 << "Square_Size" << squareSize
63 node["Square_Size"] >> squareSize;
85 if (squareSize <= 10e-6)
87 cerr << "Invalid square size " << squareSize << endl;
179 float squareSize; // The size of a square in your defined unit (point, millimeter,etc).
432 static void calcBoardCornerPositions(Size boardSize, float squareSize, vector<Point3f>& corners,
443 corners.push_back(Point3f(j*squareSize, i*squareSize, 0));
449 corners.push_back(Point3f((2*j + i % 2)*squareSize, i*squareSize, 0))
    [all...]
  /packages/apps/Settings/src/com/android/settings/users/
EditUserPhotoController.java 291 final int squareSize = Math.min(fullImage.getWidth(),
293 final int left = (fullImage.getWidth() - squareSize) / 2;
294 final int top = (fullImage.getHeight() - squareSize) / 2;
296 left + squareSize, top + squareSize);
  /external/opencv3/modules/calib3d/src/
circlesgrid.hpp 62 squareSize = 1.0f;
63 maxRectifiedDistance = (float)(squareSize / 2.0);
76 float squareSize, maxRectifiedDistance;
circlesgrid.cpp 377 idealPoints.push_back(Point2f((2*j + i % 2)*squareSize, i*squareSize));
381 idealPoints.push_back(Point2f(j*squareSize, i*squareSize));
404 idealPt = Point2f((2*j + i % 2)*squareSize, i*squareSize);
406 idealPt = Point2f(j*squareSize, i*squareSize);
    [all...]

Completed in 2764 milliseconds