HomeSort by relevance Sort by last modified time
    Searched refs:imgSize (Results 1 - 25 of 30) sorted by null

1 2

  /external/opencv/cvaux/src/
_cvvm.h 144 CvSize imgSize,
150 CvSize imgSize,
156 CvSize imgSize,
165 CvSize imgSize,
171 CvStatus icvGetCrossEpilineFrame( CvSize imgSize,
180 CvSize imgSize,
190 CvSize imgSize,
201 CvSize imgSize,
207 CvSize imgSize,
213 CvSize imgSize,
    [all...]
cvscanlines.cpp 153 CvSize imgSize,
159 error = icvGetCoefficient( matrix, imgSize, scanlines_2, scanlines_1, numlines );
261 CvSize imgSize, int *scanlines_1, int *scanlines_2, int *numlines )
278 imgSize, scanlines_1, scanlines_2, numlines );
309 imgSize,
320 imgSize, scanlines_1, scanlines_2, numlines );
327 error = icvGetCoefficientDefault( matrix, imgSize, scanlines_1, scanlines_2, numlines );
336 CvSize imgSize, int *scanlines_1, int *scanlines_2, int *numlines )
341 *numlines = imgSize.height;
347 for( y = 0; y < imgSize.height; y++
    [all...]
cvcalibfilter.cpp 74 imgSize = cvSize(0,0);
285 imgSize, points[i], buffer,
290 cameraParams[i].imgSize[0] = (float)imgSize.width;
291 cameraParams[i].imgSize[1] = (float)imgSize.height;
321 imgSize,
386 if( size.width != imgSize.width || size.height != imgSize.height )
388 imgSize = size
    [all...]
cvepilines.cpp     [all...]
  /external/opencv3/modules/imgcodecs/test/
test_drawing.cpp 105 Size imgSize( 600, 400 );
106 img.create( imgSize, CV_8UC3 );
110 polyline[1] = Point(imgSize.width, 0);
111 polyline[2] = Point(imgSize.width, imgSize.height);
112 polyline[3] = Point(0, imgSize.height);
118 if( clipLine(Rect(0,0,imgSize.width,imgSize.height), p1, p2) && clipLine(imgSize, p1, p2) )
121 p2 = Point(3,imgSize.height+1000)
    [all...]
  /external/opencv3/modules/imgproc/test/
test_cvtyuv.cpp 25 virtual Size size(Size imgSize) = 0;
76 virtual Size size(Size imgSize) = 0;
130 Size size(Size imgSize) { return Size(imgSize.width, imgSize.height + imgSize.height/2); }
166 Size size(Size imgSize) { return Size(imgSize.width, imgSize.height * 3 / 2); }
172 Size size(Size imgSize) { return imgSize;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasTransform.java 125 * @param imgSize the size of the image being scaled
129 public void setSize(int imgSize, int fullSize, int clientSize) {
130 mImgSize = imgSize;
  /external/opencv/cv/src/
cvoptflowbm.cpp 89 // imgSize, // size of the image
105 int imgStep, CvSize imgSize,
311 NumberBlocksX = (int) imgSize.width / blockSize.width;
312 NumberBlocksY = (int) imgSize.height / blockSize.height;
315 BorderWidth = imgSize.width % blockSize.width;
321 BorderHeight = imgSize.height % blockSize.height;
442 if( Y2 + CurrentHeight >= imgSize.height )
452 if( X2 + CurrentWidth >= imgSize.width )
cvoptflowhs.cpp 64 // imgSize - size of the source image ROI
89 CvSize imgSize,
107 int imageWidth = imgSize.width;
108 int imageHeight = imgSize.height;
141 if( imgSize.width <= 0 )
143 if( imgSize.height <= 0 )
145 if( imgSize.width > imgStep )
158 MemX[k] = (float *) cvAlloc( (imgSize.height) * sizeof( float ));
162 MemY[k] = (float *) cvAlloc( (imgSize.width) * sizeof( float ));
cvlkpyramid.cpp 46 intersect( CvPoint2D32f pt, CvSize win_size, CvSize imgSize,
62 max_pt->x = MIN( win_size.width, imgSize.width - ipt.x );
63 max_pt->y = MIN( win_size.height, imgSize.height - ipt.y );
67 static int icvMinimalPyramidSize( CvSize imgSize )
69 return cvAlign(imgSize.width,8) * imgSize.height / 3;
91 CvSize imgSize, levelSize;
128 imgSize = cvGetSize(imgA);
130 levelSize = imgSize;
141 assert( pyrBytes <= imgSize.width * imgSize.height * elem_size * 4 / 3 )
    [all...]
cvoptflowlk.cpp 63 // imgSize, // size of the source image ROI
86 CvSize imgSize,
110 int imageWidth = imgSize.width;
111 int imageHeight = imgSize.height;
203 MemX[k] = (float *) cvAlloc( (imgSize.height) * sizeof( float ));
207 MemY[k] = (float *) cvAlloc( (imgSize.width) * sizeof( float ));
cvcalibration.cpp     [all...]
  /external/opencv3/modules/calib3d/test/
test_cameracalibration_badarg.cpp 54 CV_CameraCalibrationBadArgTest() : imgSize(800, 600) {}
62 Size imgSize;
93 camMat << 300.f, 0.f, imgSize.width/2.f, 0, 300.f, imgSize.height/2.f, 0.f, 0.f, 1.f;
99 chessBoard = cbg(Mat(imgSize, CV_8U, Scalar(0)), camMat, distCoeffs0, exp_corn);
106 caller.imageSize = imgSize;
279 CM[0] = 500; CM[4] = 500; CM[2] = imgSize.width*2; //bad cx
282 CM[0] = 500; CM[4] = 500; CM[2] = imgSize.width/2; CM[5] = -1; //bad cy
285 CM[0] = 500; CM[4] = 500; CM[2] = imgSize.width/2; CM[5] = imgSize.height*2; //bad c
    [all...]
test_cameracalibration.cpp 1426 Size imgsize; local
    [all...]
test_cameracalibration_artificial.cpp 294 void runTest(const Size& imgSize, const Mat_<double>& camMat, const Mat_<double>& distCoeffs, size_t brdsNum, const Size& cornersSize, int flag = 0)
334 double rep_error = calibrateCamera(objectPoints, imagePoints, imgSize, camMat_est, distCoeffs_est, rvecs_est, tvecs_est, flags, criteria);
  /external/skia/third_party/ktx/
ktx.cpp 314 uint32_t imgSize = this->readInt(&buf, &bytesLeft);
317 if (bytesLeft < imgSize) {
326 PixelData pd(buf, imgSize);
332 uint32_t imgSizePadded = (imgSize + 3) & ~3;
  /external/opencv3/modules/imgproc/src/
grabcut.cpp 345 static void initMaskWithRect( Mat& mask, Size imgSize, Rect rect )
347 mask.create( imgSize, CV_8UC1 );
352 rect.width = std::min(rect.width, imgSize.width-rect.x);
353 rect.height = std::min(rect.height, imgSize.height-rect.y);
  /external/opencv3/modules/objdetect/test/
test_cascadeandhog.cpp 308 Size imgSize = images[imageIdx].size();
309 float dist = min(imgSize.height, imgSize.width) * eps.dist;
310 float wDiff = imgSize.width * eps.s;
311 float hDiff = imgSize.height * eps.s;
340 float minDist = (float)norm( Point(imgSize.width, imgSize.height) );
    [all...]
  /external/opencv3/modules/objdetect/src/
hog.cpp     [all...]
  /external/opencv3/modules/calib3d/src/
calibration.cpp     [all...]
  /external/opencv3/modules/features2d/src/
evaluation.cpp 222 static void filterEllipticKeyPointsByImageSize( std::vector<EllipticKeyPoint>& keypoints, const Size& imgSize )
231 if( it->center.x + it->boundingBox.width < imgSize.width &&
233 it->center.y + it->boundingBox.height < imgSize.height &&
  /external/opencv3/modules/java/src/
calib3d+Calib3d.java     [all...]
  /external/opencv/cvaux/include/
cvaux.h 511 float imgSize[2]; /* size of the camera view, used during calibration */
    [all...]
  /external/opencv3/modules/video/src/
lkpyramid.cpp     [all...]
  /external/opencv3/modules/calib3d/include/opencv2/
calib3d.hpp     [all...]

Completed in 1033 milliseconds

1 2