File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
video/src/main/java/video Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,8 @@ public static void detectPerson(String localFilePath) throws Exception {
101101 // posture of the person detected.
102102 TimestampedObject firstTimestampedObject = track .getTimestampedObjects (0 );
103103
104- // Attributes include unique pieces of clothing, poses (i.e., body landmarks) of the person detected.
104+ // Attributes include unique pieces of clothing, poses (i.e., body landmarks)
105+ // of the person detected.
105106 for (DetectedAttribute attribute : firstTimestampedObject .getAttributesList ()) {
106107 System .out .printf (
107108 "\t Attribute: %s; Value: %s\n " , attribute .getName (), attribute .getValue ());
Original file line number Diff line number Diff line change @@ -93,7 +93,8 @@ public static void detectPersonGcs(String gcsUri) throws Exception {
9393 // posture of the person detected.
9494 TimestampedObject firstTimestampedObject = track .getTimestampedObjects (0 );
9595
96- // Attributes include unique pieces of clothing, poses (i.e., body landmarks) of the person detected.
96+ // Attributes include unique pieces of clothing, poses (i.e., body landmarks)
97+ // of the person detected.
9798 for (DetectedAttribute attribute : firstTimestampedObject .getAttributesList ()) {
9899 System .out .printf (
99100 "\t Attribute: %s; Value: %s\n " , attribute .getName (), attribute .getValue ());
You can’t perform that action at this time.
0 commit comments