OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Detection
(Results
1 - 3
of
3
) sorted by null
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
object_detector.h
18
//
Detection
in the TF demo is done through TensorFlowMultiBoxDetector.java.
79
// Represents a potential
detection
of a specific ObjectExemplar and Descriptor
81
class
Detection
{
83
explicit
Detection
(const ObjectModelBase* const object_model,
90
Detection
(const
Detection
& other)
95
virtual ~
Detection
() {}
109
inline bool Intersects(const
Detection
& other) {
115
inline bool operator()(const
Detection
& a, const
Detection
& b) const
[
all
...]
object_tracker.h
51
// ObjectTracker is the highest-level class in the tracking/
detection
framework.
52
// It handles basic image processing, keypoint
detection
, keypoint tracking,
53
// object tracking, and object
detection
/relocalization.
67
// Does all image processing, keypoint
detection
, and object
68
// tracking/
detection
for registered objects.
225
const
Detection
&
detection
, TrackedObject** match) const;
227
void ProcessDetections(std::vector<
Detection
>* const detections);
object_tracker.cc
494
// Given a vector of detections and a model, simply returns the
Detection
for
497
const
Detection
&
detection
, TrackedObject** match) const {
507
detection
.GetObjectBoundingBox());
510
(
detection
.GetObjectModel() != tracked_object->GetModel())) {
519
detection
.GetObjectBoundingBox().GetCenter()).LengthSquared();
532
detection
.GetMatchScore()) {
546
std::vector<
Detection
>* const detections) {
547
LOGV("Initial
detection
done, iterating over %zu detections now.",
552
for (std::vector<
Detection
>::const_iterator it = detections->begin()
554
const Detection&
detection
= *it;
local
[
all
...]
Completed in 179 milliseconds