Home
last modified time | relevance | path

Searched refs:bounding_box (Results 1 – 15 of 15) sorted by relevance

/external/ImageMagick/MagickCore/
Dvision.c226 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 …]
Dattribute.c186 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 …]
Dtransform.c554 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 …]
Dvision.h31 bounding_box; member
Ddraw.h152 bounding_box; member
Dpaint.c436 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()
Ddraw.c3399 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/
Dpstops.c61 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/
Dxps.c133 bounding_box, in ReadXPSImage() local
201 (void) ResetMagickMemory(&bounding_box,0,sizeof(bounding_box)); in ReadXPSImage()
Dpcl.c179 bounding_box, in ReadPCLImage() local
247 (void) ResetMagickMemory(&bounding_box,0,sizeof(bounding_box)); in ReadPCLImage()
Dwmf.c146 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()
Dpdf.c434 bounding_box, in ReadPDFImage() local
517 (void) ResetMagickMemory(&bounding_box,0,sizeof(bounding_box)); in ReadPDFImage()
/external/eigen/unsupported/doc/examples/
DBVH_Example.cpp9 …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/
DBVH.cpp17 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/
DKdBVH.h47 outBoxes.push_back(bounding_box(objects[i]));