/external/ImageMagick/MagickCore/ |
D | vision.c | 226 object[i].bounding_box.x=(ssize_t) image->columns; in ConnectedComponentsImage() 227 object[i].bounding_box.y=(ssize_t) image->rows; in ConnectedComponentsImage() 389 if (x < object[id].bounding_box.x) in ConnectedComponentsImage() 390 object[id].bounding_box.x=x; in ConnectedComponentsImage() 391 if (x > (ssize_t) object[id].bounding_box.width) in ConnectedComponentsImage() 392 object[id].bounding_box.width=(size_t) x; in ConnectedComponentsImage() 393 if (y < object[id].bounding_box.y) in ConnectedComponentsImage() 394 object[id].bounding_box.y=y; in ConnectedComponentsImage() 395 if (y > (ssize_t) object[id].bounding_box.height) in ConnectedComponentsImage() 396 object[id].bounding_box.height=(size_t) y; in ConnectedComponentsImage() [all …]
|
D | attribute.c | 186 bounding_box; in GetImageBoundingBox() local 199 bounding_box=bounds; in GetImageBoundingBox() 210 if ((x < bounding_box.x) && in GetImageBoundingBox() 212 bounding_box.x=x; in GetImageBoundingBox() 213 if ((x > (ssize_t) bounding_box.width) && in GetImageBoundingBox() 215 bounding_box.width=(size_t) x; in GetImageBoundingBox() 216 if ((y < bounding_box.y) && in GetImageBoundingBox() 218 bounding_box.y=y; in GetImageBoundingBox() 219 if ((y > (ssize_t) bounding_box.height) && in GetImageBoundingBox() 221 bounding_box.height=(size_t) y; in GetImageBoundingBox() [all …]
|
D | transform.c | 554 bounding_box, in CropImage() local 570 bounding_box=image->page; in CropImage() 571 if ((bounding_box.width == 0) || (bounding_box.height == 0)) in CropImage() 573 bounding_box.width=image->columns; in CropImage() 574 bounding_box.height=image->rows; in CropImage() 578 page.width=bounding_box.width; in CropImage() 580 page.height=bounding_box.height; in CropImage() 581 if (((bounding_box.x-page.x) >= (ssize_t) page.width) || in CropImage() 582 ((bounding_box.y-page.y) >= (ssize_t) page.height) || in CropImage() 583 ((page.x-bounding_box.x) > (ssize_t) image->columns) || in CropImage() [all …]
|
D | vision.h | 31 bounding_box; member
|
D | draw.h | 152 bounding_box; member
|
D | paint.c | 436 gradient->bounding_box.width=image->columns; in GradientImage() 437 gradient->bounding_box.height=image->rows; in GradientImage() 440 (void) ParseAbsoluteGeometry(artifact,&gradient->bounding_box); in GradientImage()
|
D | draw.c | 3399 bounding_box; in DrawGradientImage() local 3419 bounding_box=gradient->bounding_box; in DrawGradientImage() 3427 for (y=bounding_box.y; y < (ssize_t) bounding_box.height; y++) in DrawGradientImage() 3460 for (x=bounding_box.x; x < (ssize_t) bounding_box.width; x++) in DrawGradientImage()
|
/external/libcups/filter/ |
D | pstops.c | 61 int bounding_box[4]; /* PageBoundingBox */ member 71 int bounding_box[4]; /* BoundingBox from header */ member 180 int show_border, const int *bounding_box); 668 else if (sscanf(line + 14, "%d%d%d%d", doc->bounding_box + 0, in copy_comments() 669 doc->bounding_box + 1, doc->bounding_box + 2, in copy_comments() 670 doc->bounding_box + 3) != 4) in copy_comments() 674 doc->bounding_box[0] = (int)PageLeft; in copy_comments() 675 doc->bounding_box[1] = (int)PageBottom; in copy_comments() 676 doc->bounding_box[2] = (int)PageRight; in copy_comments() 677 doc->bounding_box[3] = (int)PageTop; in copy_comments() [all …]
|
/external/ImageMagick/coders/ |
D | xps.c | 133 bounding_box, in ReadXPSImage() local 201 (void) ResetMagickMemory(&bounding_box,0,sizeof(bounding_box)); in ReadXPSImage()
|
D | pcl.c | 179 bounding_box, in ReadPCLImage() local 247 (void) ResetMagickMemory(&bounding_box,0,sizeof(bounding_box)); in ReadPCLImage()
|
D | wmf.c | 146 bounding_box; in ReadWMFImage() local 187 wmf_status=wmf_scan(wmf_info,0,&bounding_box); in ReadWMFImage() 206 eps_info->bbox=bounding_box; in ReadWMFImage() 207 wmf_status=wmf_play(wmf_info,0,&bounding_box); in ReadWMFImage()
|
D | pdf.c | 434 bounding_box, in ReadPDFImage() local 517 (void) ResetMagickMemory(&bounding_box,0,sizeof(bounding_box)); in ReadPDFImage()
|
/external/eigen/unsupported/doc/examples/ |
D | BVH_Example.cpp | 9 …Box2d bounding_box(const Vector2d &v) { return Box2d(v, v); } //compute the bounding box of a sing… in bounding_box() function
|
/external/eigen/unsupported/test/ |
D | BVH.cpp | 17 template<typename Scalar, int Dim> AlignedBox<Scalar, Dim> bounding_box(const Matrix<Scalar, Dim, 1… in bounding_box() function 35 template<int Dim> AlignedBox<double, Dim> bounding_box(const Ball<Dim> &b) in bounding_box() function
|
/external/eigen/unsupported/Eigen/src/BVH/ |
D | KdBVH.h | 47 outBoxes.push_back(bounding_box(objects[i]));
|