Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/tools/android/test/src/org/tensorflow/demo/tracking/
DObjectTracker.java89 private FrameChange lastKeypoints; field in ObjectTracker
347 if (lastKeypoints == null) { in drawKeypointsDebug()
352 final float minScore = lastKeypoints.minScore; in drawKeypointsDebug()
353 final float maxScore = lastKeypoints.maxScore; in drawKeypointsDebug()
355 for (final PointChange keypoint : lastKeypoints.pointDeltas) { in drawKeypointsDebug()
409 lastKeypoints = new FrameChange(getKeypointsNative(false)); in updateDebugHistory()
441 if (lastKeypoints != null) { in getDebugText()
442 lines.add("Num keypoints " + lastKeypoints.pointDeltas.size()); in getDebugText()
443 lines.add("Min score: " + lastKeypoints.minScore); in getDebugText()
444 lines.add("Max score: " + lastKeypoints.maxScore); in getDebugText()