HomeSort by relevance Sort by last modified time
    Searched defs:imgSize (Results 1 - 9 of 9) sorted by null

  /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/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/opencv/cv/src/
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...]
  /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...]
  /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/opencv/cvaux/include/
cvaux.h 511 float imgSize[2]; /* size of the camera view, used during calibration */
    [all...]
  /external/opencv3/modules/objdetect/src/
hog.cpp     [all...]
  /external/opencv3/modules/video/src/
lkpyramid.cpp     [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 381 milliseconds