File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
app/src/main/java/com/tzutalin/vision/demo Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -155,13 +155,14 @@ protected void onPostExecute(List<VisionDetRet> rets) {
155155 mListView .add (card );
156156 for (VisionDetRet item : rets ) {
157157 StringBuilder sb = new StringBuilder ();
158- sb .append (item .getLabel () + ", Prob:" + item .getConfidence () + " " )
159- .append ("[" )
160- .append ("" + item .getLeft () + "," )
161- .append ("" + item .getTop () + "," )
162- .append ("" + item .getRight () + "," )
163- .append ("" + item .getBottom ())
164- .append ("]" );
158+ sb .append (item .getLabel ())
159+ .append (", Prob:" ).append (item .getConfidence ())
160+ .append (" [" )
161+ .append (item .getLeft ()).append (',' )
162+ .append (item .getTop ()).append (',' )
163+ .append (item .getRight ()).append (',' )
164+ .append (item .getBottom ())
165+ .append (']' );
165166 Log .d (TAG , sb .toString ());
166167
167168 if (!item .getLabel ().equalsIgnoreCase ("background" )) {
You can’t perform that action at this time.
0 commit comments