diff --git a/samples/snippets/src/main/java/video/DetectPerson.java b/samples/snippets/src/main/java/video/DetectPerson.java index 0e0160934..66ce6409c 100644 --- a/samples/snippets/src/main/java/video/DetectPerson.java +++ b/samples/snippets/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/samples/snippets/src/main/java/video/DetectPersonGcs.java b/samples/snippets/src/main/java/video/DetectPersonGcs.java index c57a22140..4525604b5 100644 --- a/samples/snippets/src/main/java/video/DetectPersonGcs.java +++ b/samples/snippets/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());