Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/tools/android/test/src/org/tensorflow/demo/tracking/
DMultiBoxTracker.java336 final float intersectArea = intersection.width() * intersection.height(); in handleDetection() local
337 final float totalArea = a.width() * a.height() + b.width() * b.height() - intersectArea; in handleDetection()
338 final float intersectOverUnion = intersectArea / totalArea; in handleDetection()