You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: android/vision-quickstart/app/src/main/java/com/google/mlkit/vision/demo/kotlin/textdetector/TextGraphic.kt
+7
Original file line number
Diff line number
Diff line change
@@ -95,6 +95,13 @@ constructor(
95
95
Log.d(TAG, "Element language is: "+ element.recognizedLanguage)
96
96
Log.d(TAG, "Element confidence is: "+ element.confidence)
97
97
Log.d(TAG, "Element angle is: "+ element.angle)
98
+
for (symbol in element.symbols) {
99
+
Log.d(TAG, "Symbol text is: "+ symbol.text)
100
+
Log.d(TAG, "Symbol boundingbox is: "+ symbol.boundingBox)
101
+
Log.d(TAG, "Symbol cornerpoint is: "+Arrays.toString(symbol.cornerPoints))
102
+
Log.d(TAG, "Symbol confidence is: "+ symbol.confidence)
0 commit comments