From 55a536e55e81eab186f8c325e9fa42477b2c2f63 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Fri, 21 Oct 2022 12:07:52 -0700 Subject: [PATCH] Typo fix in Landmark PiperOrigin-RevId: 482854764 --- .../mediapipe/tasks/components/containers/Landmark.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mediapipe/tasks/java/com/google/mediapipe/tasks/components/containers/Landmark.java b/mediapipe/tasks/java/com/google/mediapipe/tasks/components/containers/Landmark.java index 3f96d7779..e45866190 100644 --- a/mediapipe/tasks/java/com/google/mediapipe/tasks/components/containers/Landmark.java +++ b/mediapipe/tasks/java/com/google/mediapipe/tasks/components/containers/Landmark.java @@ -30,13 +30,13 @@ public abstract class Landmark { return new AutoValue_Landmark(x, y, z, normalized); } - // The x coordniates of the landmark. + // The x coordinates of the landmark. public abstract float x(); - // The y coordniates of the landmark. + // The y coordinates of the landmark. public abstract float y(); - // The z coordniates of the landmark. + // The z coordinates of the landmark. public abstract float z(); // Whether this landmark is normalized with respect to the image size.