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

1 2

  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417BoundingBox.cpp 41 CBC_BoundingBox::CBC_BoundingBox(CBC_BoundingBox* boundingBox) {
42 init(boundingBox->m_image, boundingBox->m_topLeft, boundingBox->m_bottomLeft,
43 boundingBox->m_topRight, boundingBox->m_bottomRight);
62 CBC_BoundingBox* boundingBox = NULL;
64 boundingBox = new CBC_BoundingBox(rightBox);
65 return boundingBox;
68 boundingBox = new CBC_BoundingBox(leftBox);
    [all...]
BC_PDF417DetectionResult.h 16 CBC_BoundingBox* boundingBox);
19 void setBoundingBox(CBC_BoundingBox* boundingBox);
BC_PDF417DetectionResultColumn.cpp 29 CBC_BoundingBox* boundingBox) {
30 m_boundingBox = boundingBox;
32 m_codewords->SetSize(boundingBox->getMaxY() - boundingBox->getMinY() + 1);
BC_PDF417DetectionResultRowIndicatorColumn.h 14 CBC_DetectionResultRowIndicatorColumn(CBC_BoundingBox* boundingBox,
BC_PDF417DetectionResultRowIndicatorColumn.cpp 33 CBC_BoundingBox* boundingBox,
35 : CBC_DetectionResultColumn(boundingBox) {
54 CBC_BoundingBox* boundingBox = getBoundingBox();
56 m_isLeft ? boundingBox->getTopLeft() : boundingBox->getTopRight();
58 m_isLeft ? boundingBox->getBottomLeft() : boundingBox->getBottomRight();
130 CBC_BoundingBox* boundingBox = getBoundingBox();
132 m_isLeft ? boundingBox->getTopLeft() : boundingBox->getTopRight();
    [all...]
BC_PDF417DetectionResultColumn.h 13 CBC_DetectionResultColumn(CBC_BoundingBox* boundingBox);
BC_PDF417ScanningDecoder.cpp 64 CBC_BoundingBox* boundingBox = new CBC_BoundingBox(
73 getRowIndicatorColumn(image, boundingBox, *imageTopLeft, TRUE,
78 getRowIndicatorColumn(image, boundingBox, *imageTopRight, FALSE,
86 delete boundingBox;
90 boundingBox->getMinY() ||
92 boundingBox->getMaxY())) {
93 delete boundingBox;
94 boundingBox = detectionResult->getBoundingBox();
96 detectionResult->setBoundingBox(boundingBox);
115 boundingBox, barcodeColumn == 0);
    [all...]
BC_PDF417BoundingBox.h 19 CBC_BoundingBox(CBC_BoundingBox* boundingBox);
BC_PDF417DetectionResult.cpp 33 CBC_BoundingBox* boundingBox) {
36 m_boundingBox = boundingBox;
62 void CBC_DetectionResult::setBoundingBox(CBC_BoundingBox* boundingBox) {
63 m_boundingBox = boundingBox;
BC_PDF417ScanningDecoder.h 54 CBC_BoundingBox* boundingBox,
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
BulletConstructor.java 23 import com.badlogic.gdx.math.collision.BoundingBox;
58 final BoundingBox boundingBox = new BoundingBox();
59 model.calculateBoundingBox(boundingBox);
60 create(model, mass, boundingBox.getWidth(), boundingBox.getHeight(), boundingBox.getDepth());
BulletEntity.java 23 import com.badlogic.gdx.math.collision.BoundingBox;
35 public final BoundingBox boundingBox = new BoundingBox();
59 modelInstance.calculateBoundingBox(boundingBox);
60 boundingBoxRadius = boundingBox.getDimensions(new Vector3()).len() * 0.5f;
OcclusionCullingTest.java 39 import com.badlogic.gdx.math.collision.BoundingBox;
157 position.y = entity.boundingBox.getDimensions(tmpV2).y * 0.5f;
258 BoundingBox bb = new BoundingBox();
309 return frustumCam.frustum.sphereInFrustum(tmpV1.add(entity.boundingBox.getCenter(tmpV2)), entity.boundingBoxRadius);
  /external/opencv3/modules/features2d/src/
evaluation.cpp 131 Size_<float> boundingBox; // half sizes of bounding box which sides are parallel to the coordinate axes
151 boundingBox.width = (float)sqrt(ellipse[2]/ac_b2);
152 boundingBox.height = (float)sqrt(ellipse[0]/ac_b2);
231 if( it->center.x + it->boundingBox.width < imgSize.width &&
232 it->center.x - it->boundingBox.width > 0 &&
233 it->center.y + it->boundingBox.height < imgSize.height &&
234 it->center.y - it->boundingBox.height > 0 )
350 int maxx = (int)ceil(( keypoint1a.boundingBox.width > (diff.x+keypoint2a.boundingBox.width)) ?
351 keypoint1a.boundingBox.width : (diff.x+keypoint2a.boundingBox.width))
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureStroke.java 36 public final RectF boundingBox;
80 boundingBox = bx;
88 boundingBox = new RectF(bbx.left, bbx.top, bbx.right, bbx.bottom);
96 return new GestureStroke(boundingBox, length, points, timestamps);
162 final RectF rect = boundingBox;
Gesture.java 97 mBoundingBox.union(stroke.boundingBox);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/
ParticleController.java 11 import com.badlogic.gdx.math.collision.BoundingBox;
49 protected BoundingBox boundingBox;
241 public BoundingBox getBoundingBox (){
242 if(boundingBox == null) boundingBox = new BoundingBox();
244 return boundingBox;
249 boundingBox.clr();
252 boundingBox.ext( positionChannel.data[pos + ParticleChannels.XOffset],
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtUtils.java 248 * @param boundingBox the bounding rectangle of the rectangle list, which can be
259 List<Rectangle> rectangles, Rectangle boundingBox, double scale, byte alpha) {
261 if (rectangles.size() == 0 || boundingBox == null || boundingBox.isEmpty()) {
266 int destWidth = (int) (scale * boundingBox.width);
267 int destHeight = (int) (scale * boundingBox.height);
274 int dx1 = bounds.x - boundingBox.x;
275 int dy1 = bounds.y - boundingBox.y;
GestureManager.java     [all...]
  /cts/tests/tests/gesture/src/android/gesture/cts/
GestureStrokeTest.java 119 * Verifies that {@link android.gesture.GestureStroke#boundingBox} has expected values for
124 mHelper.assertLineBoundingBox(line.boundingBox);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtilsTest.java 212 * @param boundingBox the bounding rectangle of the set of rectangles to copy, can be
220 List<Rectangle> rectangles, Rectangle boundingBox, double scale) {
235 // rectangles, boundingBox, scale);
241 if (boundingBox == null) {
245 int destWidth = (int) (scale * boundingBox.width);
246 int destHeight = (int) (scale * boundingBox.height);
252 int dx1 = bounds.x - boundingBox.x;
253 int dy1 = bounds.y - boundingBox.y;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Quad.java 70 public Rectangle boundingBox() {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusgraphics.h     [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
BaseWrapContentTest.java 224 Rect boundingBox = new Rect(0, 0, 0, 0);
226 boundingBox.union(rect);
  /external/deqp/modules/gles31/functional/
es31fPrimitiveBoundingBoxTests.cpp 60 struct BoundingBox
73 float& BoundingBox::getComponentAccess (int ndx)
82 const float& BoundingBox::getComponentAccess (int ndx) const
84 return const_cast<BoundingBox*>(this)->getComponentAccess(ndx);
93 static ProjectedBBox projectBoundingBox (const BoundingBox& bbox)
202 bool verifyState (glu::CallLogWrapper& gl, const BoundingBox& bbox) const;
222 static const BoundingBox fixedCases[] =
235 std::vector<BoundingBox> cases;
240 BoundingBox boundingBox;
    [all...]

Completed in 939 milliseconds

1 2