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

1 2

  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
gl_utils.h 27 inline static void DrawBox(const BoundingBox& bounding_box) {
29 bounding_box.left_, bounding_box.bottom_,
30 bounding_box.left_, bounding_box.top_,
31 bounding_box.left_, bounding_box.top_,
32 bounding_box.right_, bounding_box.top_,
33 bounding_box.right_, bounding_box.top_
    [all...]
tracked_object.cc 31 const BoundingBox& bounding_box,
34 last_known_position_(bounding_box),
35 last_detection_position_(bounding_box),
45 InitNormalized(image, bounding_box, &last_detection_thumbnail_);
integral_image.h 150 inline Code GetCode(const BoundingBox& bounding_box) const {
151 return GetCode(bounding_box.left_, bounding_box.top_,
152 bounding_box.right_, bounding_box.bottom_);
object_detector.h 85 const BoundingBox& bounding_box)
88 bounding_box_(bounding_box) {}
167 const BoundingBox& bounding_box, const bool locked,
object_tracker.h 80 const BoundingBox& bounding_box);
85 const BoundingBox& bounding_box,
90 const BoundingBox& bounding_box);
156 const BoundingBox& bounding_box,
object_tracker.cc 152 const BoundingBox& bounding_box, const ObjectModelBase* object_model) {
167 new TrackedObject(id, source_image, bounding_box, model);
175 const BoundingBox& bounding_box) {
186 object_model->TrackStep(bounding_box, image, integral_image, true);
193 MaybeAddObject(id, image, bounding_box, object_model);
199 const BoundingBox& bounding_box,
208 const BoundingBox current_position = TrackBox(bounding_box, timestamp);
212 VLOG(2) << "Set tracked position for " << id << " to " << bounding_box
218 const std::string& id, const BoundingBox& bounding_box) {
219 SetPreviousPositionOfObject(id, bounding_box, curr_time_)
    [all...]
geom.h 94 BoundingBox(const BoundingBox& bounding_box)
95 : left_(bounding_box.left_),
96 top_(bounding_box.top_),
97 right_(bounding_box.right_),
98 bottom_(bounding_box.bottom_) {
tracked_object.h 35 const BoundingBox& bounding_box, ObjectModelBase* const model);
flow_cache.h 121 Point2f GetMedianFlow(const BoundingBox& bounding_box,
129 const BoundingBox valid_box = bounding_box.Intersect(
keypoint_detector.cc 162 const BoundingBox bounding_box = *iter; local
168 if (bounding_box.Contains(curr_change->frame1_keypoints_[i].pos_)) {
178 bounding_box,
object_tracker_jni.cc 183 BoundingBox bounding_box(x1, y1, x2, y2);
185 id_str, reinterpret_cast<const uint8_t*>(pixels), bounding_box);
286 const BoundingBox bounding_box = local
291 bounding_box.CopyToArray(reinterpret_cast<float*>(rect));
image.h 150 inline bool Contains(const BoundingBox& bounding_box) const;
image-inl.h 215 inline bool Image<T>::Contains(const BoundingBox& bounding_box) const {
218 return GetContainingBox().Contains(bounding_box);
  /external/ImageMagick/MagickCore/
vision.h 31 bounding_box; member in struct:_CCObjectInfo
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...]
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
  /external/libcups/filter/
pstops.c 61 int bounding_box[4]; /* PageBoundingBox */ member in struct:__anon24483
71 int bounding_box[4]; /* BoundingBox from header */ member in struct:__anon24484
181 int show_border, const int *bounding_box);
669 else if (sscanf(line + 14, "%d%d%d%d", doc->bounding_box + 0,
670 doc->bounding_box + 1, doc->bounding_box + 2,
671 doc->bounding_box + 3) != 4)
675 doc->bounding_box[0] = (int)PageLeft;
676 doc->bounding_box[1] = (int)PageBottom;
677 doc->bounding_box[2] = (int)PageRight
1242 int bounding_box[4]; \/* PageBoundingBox *\/ local
    [all...]
  /external/eigen/unsupported/doc/examples/
BVH_Example.cpp 9 Box2d bounding_box(const Vector2d &v) { return Box2d(v, v); } //compute the bounding box of a single point function in namespace:Eigen
  /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
  /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/tensorflow/tensorflow/contrib/slim/python/slim/data/
tfexample_decoder.py 144 bounding_box = array_ops.concat(sides, 0)
145 return array_ops.transpose(bounding_box)
  /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. */

Completed in 631 milliseconds

1 2