diff --git a/video/src/main/java/video/DetectPerson.java b/video/src/main/java/video/DetectPerson.java index 0e0160934f6..66ce6409c83 100644 --- a/video/src/main/java/video/DetectPerson.java +++ b/video/src/main/java/video/DetectPerson.java @@ -101,7 +101,7 @@ public static void detectPerson(String localFilePath) throws Exception { // posture of the person detected. TimestampedObject firstTimestampedObject = track.getTimestampedObjects(0); - // Attributes include unique pieces of clothing, poses, or hair color. + // Attributes include unique pieces of clothing, poses (i.e., body landmarks) of the person detected. for (DetectedAttribute attribute : firstTimestampedObject.getAttributesList()) { System.out.printf( "\tAttribute: %s; Value: %s\n", attribute.getName(), attribute.getValue()); diff --git a/video/src/main/java/video/DetectPersonGcs.java b/video/src/main/java/video/DetectPersonGcs.java index c57a2214069..4525604b547 100644 --- a/video/src/main/java/video/DetectPersonGcs.java +++ b/video/src/main/java/video/DetectPersonGcs.java @@ -93,7 +93,7 @@ public static void detectPersonGcs(String gcsUri) throws Exception { // posture of the person detected. TimestampedObject firstTimestampedObject = track.getTimestampedObjects(0); - // Attributes include unique pieces of clothing, poses, or hair color. + // Attributes include unique pieces of clothing, poses (i.e., body landmarks) of the person detected. for (DetectedAttribute attribute : firstTimestampedObject.getAttributesList()) { System.out.printf( "\tAttribute: %s; Value: %s\n", attribute.getName(), attribute.getValue());