Home
last modified time | relevance | path

Searched refs:BoundingBox (Results 1 – 25 of 49) sorted by relevance

12

/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dgeom.h86 class BoundingBox {
88 BoundingBox() in BoundingBox() function
94 BoundingBox(const BoundingBox& bounding_box) in BoundingBox() function
103 BoundingBox(const float left, in BoundingBox() function
115 BoundingBox(const Point2f& point1, const Point2f& point2) in BoundingBox() function
156 inline BoundingBox Intersect(const BoundingBox& that) const { in Intersect()
161 return BoundingBox(); in Intersect()
168 return BoundingBox(); in Intersect()
171 return BoundingBox(new_left, new_top, new_right, new_bottom); in Intersect()
175 inline BoundingBox Union(const BoundingBox& that) const { in Union()
[all …]
Dtracked_object.h35 const BoundingBox& bounding_box, ObjectModelBase* const model);
39 void UpdatePosition(const BoundingBox& new_position, const int64_t timestamp,
46 const BoundingBox& detection_position,
69 inline BoundingBox GetPosition() const { in GetPosition()
73 inline BoundingBox GetLastDetectionPosition() const { in GetLastDetectionPosition()
100 BoundingBox temp_box(last_known_position_); in Draw()
140 BoundingBox last_known_position_;
143 BoundingBox last_detection_position_;
Dobject_tracker.cc153 const BoundingBox& bounding_box, const ObjectModelBase* object_model) { in MaybeAddObject()
176 const BoundingBox& bounding_box) { in RegisterNewObjectWithAppearance()
200 const BoundingBox& bounding_box, in SetPreviousPositionOfObject()
210 const BoundingBox current_position = TrackBox(bounding_box, timestamp); in SetPreviousPositionOfObject()
220 const std::string& id, const BoundingBox& bounding_box) { in SetCurrentPositionOfObject()
287 BoundingBox ObjectTracker::TrackBox(const BoundingBox& region, in TrackBox()
295 BoundingBox tracked_box(region); in TrackBox()
307 BoundingBox ObjectTracker::TrackBox(const BoundingBox& region, in TrackBox()
343 BoundingBox tracked_box(region); in TrackBox()
448 static void AddQuadrants(const BoundingBox& box, in AddQuadrants()
[all …]
Dobject_tracker.h79 const BoundingBox& bounding_box);
84 const BoundingBox& bounding_box,
89 const BoundingBox& bounding_box);
108 BoundingBox TrackBox(const BoundingBox& region,
155 const BoundingBox& bounding_box,
170 BoundingBox TrackBox(const BoundingBox& region,
Dobject_detector.h54 const BoundingBox& image_bounds, in FillWithSquares()
55 const BoundingBox& position, in FillWithSquares()
85 const BoundingBox& bounding_box) in Detection()
97 inline BoundingBox GetObjectBoundingBox() const { in GetObjectBoundingBox()
123 BoundingBox bounding_box_;
128 const BoundingBox actual_area = detection.GetObjectBoundingBox();
167 const BoundingBox& bounding_box, const bool locked,
Dtracked_object.cc23 const BoundingBox& position, in InitNormalized()
25 BoundingBox scaled_box(position); in InitNormalized()
31 const BoundingBox& bounding_box, in TrackedObject()
50 void TrackedObject::UpdatePosition(const BoundingBox& new_position, in UpdatePosition()
113 const BoundingBox& detection_position, in OnDetection()
Dkeypoint_detector.h49 const std::vector<BoundingBox>& rois,
61 const std::vector<BoundingBox>& boxes,
89 const BoundingBox& box,
101 const std::vector<BoundingBox>& boxes,
Dkeypoint_detector.cc99 const BoundingBox& box, in SelectKeypointsInBox()
154 const std::vector<BoundingBox>& boxes, in SelectKeypoints()
160 for (std::vector<BoundingBox>::const_iterator iter = boxes.begin(); in SelectKeypoints()
162 const BoundingBox bounding_box = *iter; in SelectKeypoints()
298 const std::vector<BoundingBox>& boxes, in AddExtraCandidatesForBoxes()
303 for (std::vector<BoundingBox>::const_iterator iter = boxes.begin(); in AddExtraCandidatesForBoxes()
305 const BoundingBox box = *iter; in AddExtraCandidatesForBoxes()
328 const std::vector<BoundingBox>& rois, in FindKeypoints()
Dframe_pair.h35 void AdjustBox(const BoundingBox box,
57 int FillWeights(const BoundingBox& box,
Dobject_model.h57 virtual void TrackStep(const BoundingBox& position, in TrackStep()
71 const BoundingBox& position, const ImageData& image_data) const = 0;
Dflow_cache.h120 Point2f GetMedianFlow(const BoundingBox& bounding_box, in GetMedianFlow()
128 const BoundingBox valid_box = bounding_box.Intersect( in GetMedianFlow()
129 BoundingBox(0, 0, image_size_.width - 1, image_size_.height - 1)); in GetMedianFlow()
Dobject_tracker_jni.cc183 BoundingBox bounding_box(x1, y1, x2, y2); in OBJECT_TRACKER_METHOD()
204 id_str, BoundingBox(x1, y1, x2, y2), timestamp); in OBJECT_TRACKER_METHOD()
219 id_str, BoundingBox(x1, y1, x2, y2)); in OBJECT_TRACKER_METHOD()
286 const BoundingBox bounding_box = in OBJECT_TRACKER_METHOD()
407 const BoundingBox new_position = get_object_tracker(env, thiz)->TrackBox( in OBJECT_TRACKER_METHOD()
408 BoundingBox(position_x1, position_y1, position_x2, position_y2), in OBJECT_TRACKER_METHOD()
Dsprite.h36 Sprite(const Image<uint8_t>& image, const BoundingBox* const area) { in Sprite()
103 const BoundingBox* const area) { in LoadTexture()
Dframe_pair.cc32 void FramePair::AdjustBox(const BoundingBox box, in AdjustBox()
41 BoundingBox resized_box(box); in AdjustBox()
81 int FramePair::FillWeights(const BoundingBox& box, in FillWeights()
/external/tensorflow/tensorflow/lite/java/ovic/src/main/java/org/tensorflow/ovic/
DBoundingBox.java18 public class BoundingBox { class
36 public BoundingBox(float x1, float y1, float x2, float y2, int category, float score) { in BoundingBox() method in BoundingBox
48 public float intersect(BoundingBox bbx) { in intersect()
54 public float union(BoundingBox bbx) { in union()
65 public float computeIoU(BoundingBox bbx) { in computeIoU()
DOvicDetectionResult.java23 public final ArrayList<BoundingBox> detections;
36 detections = new ArrayList<BoundingBox>(capacity); in OvicDetectionResult()
38 detections.add(new BoundingBox(-1.0f, -1.0f, -1.0f, -1.0f, -1, -1.0f)); in OvicDetectionResult()
60 for (BoundingBox box : detections) { in scaleUp()
73 for (BoundingBox box : detections) { in toString()
/external/tflite-support/tensorflow_lite_support/cc/task/vision/core/
Dbase_vision_task_api.h48 const BoundingBox&> {
52 const BoundingBox&>(std::move(engine)) { in BaseVisionTaskApi()
70 const BoundingBox&>::engine_;
116 const BoundingBox& roi) override { in Preprocess()
246 const BoundingBox& roi) { in IsImagePreprocessingNeeded()
/external/tflite-support/tensorflow_lite_support/cc/task/vision/utils/
Dframe_buffer_utils.h41 BoundingBox OrientBoundingBox(const BoundingBox& from_box,
47 BoundingBox OrientAndDenormalizeBoundingBox(
257 absl::optional<BoundingBox> bounding_box,
Dframe_buffer_utils.cc94 static BoundingBox RotateBoundingBox(const BoundingBox& box, int angle, in RotateBoundingBox()
120 BoundingBox result; in RotateBoundingBox()
174 BoundingBox OrientBoundingBox(const BoundingBox& from_box, in OrientBoundingBox()
178 BoundingBox to_box = from_box; in OrientBoundingBox()
201 BoundingBox OrientAndDenormalizeBoundingBox( in OrientAndDenormalizeBoundingBox()
206 BoundingBox from_box; in OrientAndDenormalizeBoundingBox()
212 BoundingBox to_box = OrientBoundingBox(from_box, from_orientation, in OrientAndDenormalizeBoundingBox()
569 const FrameBuffer& buffer, absl::optional<BoundingBox> bounding_box, in Preprocess()
/external/libvpx/libvpx/tools/3D-Reconstruction/sketch_3D_reconstruction/
DBVH.pde5 class BoundingBox {
8 BoundingBox() {
32 void add(BoundingBox bbx) {
99 BoundingBox overall_bbx;
103 overall_bbx = new BoundingBox();
DRay_Tracing.pde7 BoundingBox bbx;
15 bbx = new BoundingBox();
/external/tflite-support/tensorflow_lite_support/cc/task/vision/
Dimage_classifier.h111 const FrameBuffer& frame_buffer, const BoundingBox& roi);
125 const FrameBuffer& frame_buffer, const BoundingBox& roi) override;
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/
D320.tesc.out235 0:121 direct index ( patch temp highp 4-component vector of float BoundingBox)
236 … 'gl_BoundingBoxEXT' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
245 0:122 direct index ( patch temp highp 4-component vector of float BoundingBox)
246 … 'gl_BoundingBoxOES' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
255 0:123 direct index ( patch temp highp 4-component vector of float BoundingBox)
256 … 'gl_BoundingBox' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
265 0:124 direct index ( patch temp highp 4-component vector of float BoundingBox)
266 … 'gl_BoundingBox' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
275 0:125 direct index ( patch temp highp 4-component vector of float BoundingBox)
276 … 'gl_BoundingBox' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
[all …]
D310.tesc.out249 … 'gl_BoundingBoxEXT' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
255 0:141 direct index ( patch temp highp 4-component vector of float BoundingBox)
256 … 'gl_BoundingBoxEXT' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
265 0:142 direct index ( patch temp highp 4-component vector of float BoundingBox)
266 … 'gl_BoundingBoxEXT' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
275 0:143 direct index ( patch temp highp 4-component vector of float BoundingBox)
276 … 'gl_BoundingBoxEXT' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
287 … 'gl_BoundingBoxOES' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
292 0:155 direct index ( patch temp highp 4-component vector of float BoundingBox)
293 … 'gl_BoundingBoxOES' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
[all …]
/external/deqp-deps/glslang/Test/baseResults/
D320.tesc.out235 0:121 direct index ( patch temp highp 4-component vector of float BoundingBox)
236 … 'gl_BoundingBoxEXT' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
245 0:122 direct index ( patch temp highp 4-component vector of float BoundingBox)
246 … 'gl_BoundingBoxOES' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
255 0:123 direct index ( patch temp highp 4-component vector of float BoundingBox)
256 … 'gl_BoundingBox' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
265 0:124 direct index ( patch temp highp 4-component vector of float BoundingBox)
266 … 'gl_BoundingBox' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
275 0:125 direct index ( patch temp highp 4-component vector of float BoundingBox)
276 … 'gl_BoundingBox' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
[all …]

12