/external/tensorflow/tensorflow/examples/android/jni/object_tracking/ |
D | geom.h | 86 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 …]
|
D | tracked_object.h | 35 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_;
|
D | object_tracker.cc | 152 const BoundingBox& bounding_box, const ObjectModelBase* object_model) { in MaybeAddObject() 175 const BoundingBox& bounding_box) { in RegisterNewObjectWithAppearance() 199 const BoundingBox& bounding_box, in SetPreviousPositionOfObject() 208 const BoundingBox current_position = TrackBox(bounding_box, timestamp); in SetPreviousPositionOfObject() 218 const std::string& id, const BoundingBox& bounding_box) { in SetCurrentPositionOfObject() 285 BoundingBox ObjectTracker::TrackBox(const BoundingBox& region, in TrackBox() 293 BoundingBox tracked_box(region); in TrackBox() 305 BoundingBox ObjectTracker::TrackBox(const BoundingBox& region, in TrackBox() 341 BoundingBox tracked_box(region); in TrackBox() 446 static void AddQuadrants(const BoundingBox& box, in AddQuadrants() [all …]
|
D | object_tracker.h | 80 const BoundingBox& bounding_box); 85 const BoundingBox& bounding_box, 90 const BoundingBox& bounding_box); 109 BoundingBox TrackBox(const BoundingBox& region, 156 const BoundingBox& bounding_box, 171 BoundingBox TrackBox(const BoundingBox& region,
|
D | object_detector.h | 54 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,
|
D | tracked_object.cc | 23 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()
|
D | keypoint_detector.h | 48 const std::vector<BoundingBox>& rois, 60 const std::vector<BoundingBox>& boxes, 88 const BoundingBox& box, 100 const std::vector<BoundingBox>& boxes,
|
D | keypoint_detector.cc | 99 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()
|
D | frame_pair.h | 35 void AdjustBox(const BoundingBox box, 57 int FillWeights(const BoundingBox& box,
|
D | object_model.h | 58 virtual void TrackStep(const BoundingBox& position, in TrackStep() 72 const BoundingBox& position, const ImageData& image_data) const = 0;
|
D | object_tracker_jni.cc | 183 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()
|
D | flow_cache.h | 121 Point2f GetMedianFlow(const BoundingBox& bounding_box, in GetMedianFlow() 129 const BoundingBox valid_box = bounding_box.Intersect( in GetMedianFlow() 130 BoundingBox(0, 0, image_size_.width - 1, image_size_.height - 1)); in GetMedianFlow()
|
D | sprite.h | 38 Sprite(const Image<uint8_t>& image, const BoundingBox* const area) { in Sprite() 105 const BoundingBox* const area) { in LoadTexture()
|
D | frame_pair.cc | 31 void FramePair::AdjustBox(const BoundingBox box, in AdjustBox() 40 BoundingBox resized_box(box); in AdjustBox() 80 int FramePair::FillWeights(const BoundingBox& box, in FillWeights()
|
D | image.h | 148 inline BoundingBox GetContainingBox() const; 150 inline bool Contains(const BoundingBox& bounding_box) const;
|
D | gl_utils.h | 27 inline static void DrawBox(const BoundingBox& bounding_box) { in DrawBox()
|
D | image-inl.h | 209 inline BoundingBox Image<T>::GetContainingBox() const { in GetContainingBox() 210 return BoundingBox( in GetContainingBox() 215 inline bool Image<T>::Contains(const BoundingBox& bounding_box) const { in Contains()
|
D | integral_image.h | 150 inline Code GetCode(const BoundingBox& bounding_box) const { in GetCode()
|
D | image_utils.h | 198 const BoundingBox& area_to_copy, in CopyArea()
|
/external/tensorflow/tensorflow/lite/java/ovic/src/main/java/org/tensorflow/ovic/ |
D | BoundingBox.java | 18 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()
|
D | OvicDetectionResult.java | 23 public final ArrayList<BoundingBox> detections; 34 detections = new ArrayList<BoundingBox>(capacity); in OvicDetectionResult() 36 detections.add(new BoundingBox(-1.0f, -1.0f, -1.0f, -1.0f, -1, -1.0f)); in OvicDetectionResult() 57 for (BoundingBox box : detections) { in scaleUp() 69 for (BoundingBox box : detections) { in toString()
|
/external/tensorflow/tensorflow/lite/java/ovic/ |
D | BUILD | 109 "src/main/java/org/tensorflow/ovic/BoundingBox.java", 126 "src/main/java/org/tensorflow/ovic/BoundingBox.java",
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | 310.tesc.out | 247 … 'gl_BoundingBoxOES' ( patch out 2-element array of highp 4-component vector of float BoundingBox) 252 0:140 direct index ( patch temp highp 4-component vector of float BoundingBox) 253 … 'gl_BoundingBoxOES' ( patch out 2-element array of highp 4-component vector of float BoundingBox) 262 0:141 direct index ( patch temp highp 4-component vector of float BoundingBox) 263 … 'gl_BoundingBoxOES' ( patch out 2-element array of highp 4-component vector of float BoundingBox) 272 0:142 direct index ( patch temp highp 4-component vector of float BoundingBox) 273 … 'gl_BoundingBoxOES' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
|
D | 320.tesc.out | 231 0:121 direct index ( patch temp highp 4-component vector of float BoundingBox) 232 … 'gl_BoundingBoxOES' ( patch out 2-element array of highp 4-component vector of float BoundingBox) 241 0:122 direct index ( patch temp highp 4-component vector of float BoundingBox) 242 … 'gl_BoundingBoxOES' ( patch out 2-element array of highp 4-component vector of float BoundingBox) 251 0:123 direct index ( patch temp highp 4-component vector of float BoundingBox) 252 … 'gl_BoundingBoxOES' ( patch out 2-element array of highp 4-component vector of float BoundingBox)
|
/external/tensorflow/tensorflow/contrib/slim/python/slim/data/ |
D | tfexample_decoder.py | 102 class BoundingBox(ItemHandler): class 125 super(BoundingBox, self).__init__(self._full_keys)
|