/external/ImageMagick/MagickCore/ |
vision.c | 228 object[i].bounding_box.x=(ssize_t) image->columns; 229 object[i].bounding_box.y=(ssize_t) image->rows; 391 if (x < object[id].bounding_box.x) 392 object[id].bounding_box.x=x; 393 if (x > (ssize_t) object[id].bounding_box.width) 394 object[id].bounding_box.width=(size_t) x; 395 if (y < object[id].bounding_box.y) 396 object[id].bounding_box.y=y; 397 if (y > (ssize_t) object[id].bounding_box.height) 398 object[id].bounding_box.height=(size_t) y 462 bounding_box; local [all...] |
vision.h | 31 bounding_box; member in struct:_CCObjectInfo
|
attribute.c | 188 bounding_box; 201 bounding_box=bounds; 212 if ((x < bounding_box.x) && 214 bounding_box.x=x; 215 if ((x > (ssize_t) bounding_box.width) && 217 bounding_box.width=(size_t) x; 218 if ((y < bounding_box.y) && 220 bounding_box.y=y; 221 if ((y > (ssize_t) bounding_box.height) && 223 bounding_box.height=(size_t) y 186 bounding_box; local [all...] |
transform.c | 559 bounding_box, 575 bounding_box=image->page; 576 if ((bounding_box.width == 0) || (bounding_box.height == 0)) 578 bounding_box.width=image->columns; 579 bounding_box.height=image->rows; 583 page.width=bounding_box.width; 585 page.height=bounding_box.height; 586 if (((bounding_box.x-page.x) >= (ssize_t) page.width) || 587 ((bounding_box.y-page.y) >= (ssize_t) page.height) | 554 bounding_box, local [all...] |
draw.h | 152 bounding_box; member in struct:_GradientInfo
|
paint.c | 439 gradient->bounding_box.width=image->columns; 440 gradient->bounding_box.height=image->rows; 443 (void) ParseAbsoluteGeometry(artifact,&gradient->bounding_box); [all...] |
draw.c | 3399 bounding_box; local [all...] |
/external/opencv3/samples/cpp/tutorial_code/features2D/AKAZE_tracking/ |
planar_tracking.cpp | 112 "akaze_track input_path output_path bounding_box" << endl; 133 if(fs["bounding_box"].empty()) { 134 cerr << "Couldn't read bounding_box from " << argv[3] << endl; 137 fs["bounding_box"] >> bb;
|
/external/eigen/unsupported/doc/examples/ |
BVH_Example.cpp | 10 Box2d bounding_box(const Vector2d &v) { return Box2d(v, v); } //compute the bounding box of a single point function in namespace:Eigen::internal
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
bitmaptools.cc | 17 BOUNDING_BOX = 2 202 fprintf(stderr, "Could not parse BOUNDING_BOX command.\n"); 253 case BOUNDING_BOX:
|
_bitmap.py | 27 BOUNDING_BOX = 2 76 response = self._RunCommand(_BitmapTools.BOUNDING_BOX, int(color),
|
/external/eigen/unsupported/Eigen/src/BVH/ |
KdBVH.h | 31 //iterator range or using bounding_box in a unified way 47 outBoxes.push_back(bounding_box(objects[i])); 59 * \param _Object The object type that lives in the hierarchy. It must have value semantics. Either bounding_box(_Object) must 82 /** Given an iterator range over \a Object references, constructs the BVH. Requires that bounding_box(Object) return a Volume. */ 89 * Requires that bounding_box(Object) return a Volume. */
|
/external/eigen/unsupported/test/ |
BVH.cpp | 17 template<typename Scalar, int Dim> AlignedBox<Scalar, Dim> bounding_box(const Matrix<Scalar, Dim, 1> &v) { return AlignedBox<Scalar, Dim>(v); } function in namespace:Eigen 35 template<int Dim> AlignedBox<double, Dim> bounding_box(const Ball<Dim> &b) function
|
/external/ImageMagick/coders/ |
xps.c | 135 bounding_box, 203 (void) ResetMagickMemory(&bounding_box,0,sizeof(bounding_box)); 133 bounding_box, local
|
pcl.c | 183 bounding_box, 251 (void) ResetMagickMemory(&bounding_box,0,sizeof(bounding_box)); 179 bounding_box, local
|
wmf.c | 148 bounding_box; 189 wmf_status=wmf_scan(wmf_info,0,&bounding_box); 208 eps_info->bbox=bounding_box; 209 wmf_status=wmf_play(wmf_info,0,&bounding_box); 146 bounding_box; local [all...] |
pdf.c | 440 bounding_box, 523 (void) ResetMagickMemory(&bounding_box,0,sizeof(bounding_box)); 434 bounding_box, local [all...] |
/external/autotest/frontend/tko/ |
graphing_utils.py | 448 bounding_box = non_whitespace.getbbox() 449 image = image.crop(bounding_box) 454 return image_data.getvalue(), bounding_box
|