Home
last modified time | relevance | path

Searched refs:GetArea (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dgeom.h136 inline float GetArea() const { in GetArea() function
152 return GetArea() > 0.0f; in ValidBox()
183 SCHECK(GetArea() > 0.0f, "Empty bounding box!"); in PascalScore()
184 SCHECK(that.GetArea() > 0.0f, "Empty bounding box!"); in PascalScore()
186 const float intersect_area = this->Intersect(that).GetArea(); in PascalScore()
193 intersect_area / (GetArea() + that.GetArea() - intersect_area); in PascalScore()
Dflow_cache.h131 if (valid_box.GetArea() <= 0.0f) { in GetMedianFlow()
/external/libchrome/ui/gfx/geometry/
Dsize_f.cc11 float SizeF::GetArea() const { in GetArea() function in gfx::SizeF
Dsize.h51 int GetArea() const;
Dsize_f.h39 float GetArea() const;
Dsize.cc50 int Size::GetArea() const { in GetArea() function in gfx::Size
/external/libchrome/mojo/public/cpp/bindings/tests/
Drect_chromium.h56 int GetArea() const { return width_ * height_; } in GetArea() function
Dstruct_traits_unittest.cc67 if (r.GetArea() > largest_rect_.GetArea()) in AddRect()