Add periods on documentation
authorKwang Son <k.son@samsung.com>
Thu, 6 May 2021 00:57:52 +0000 (09:57 +0900)
committerPiotr Czaja <p.czaja@samsung.com>
Tue, 14 Sep 2021 11:01:34 +0000 (13:01 +0200)
Signed-off-by: Kwang Son <k.son@samsung.com>
Fitness/Services/SquatDetector.cs

index 7f0efdb3c81789ba10e0e67f6a65f2c8ec25a0a6..2cb4c71b98f685030afe00796c03d164c366e50a 100644 (file)
@@ -5,7 +5,7 @@ using Tizen.Multimedia;
 namespace Fitness.Services
 {
     /// <summary>
-    /// SquatDetector
+    /// SquatDetector.
     /// </summary>
     public static class SquatDetector
     {
@@ -25,10 +25,10 @@ namespace Fitness.Services
         });
 
         /// <summary>
-        /// Return Average of lower body <see href="https://en.wikipedia.org/wiki/Cosine_similarity">Cosine Similarity</see> between input user pose and ground truth pose
+        /// Return Average of lower body <see href="https://en.wikipedia.org/wiki/Cosine_similarity">Cosine Similarity</see> between input user pose and ground truth pose.
         /// </summary>
-        /// <param name="userBody">user body detection result</param>
-        /// <returns>Float score value. (-1.0 ~ 1.0)</returns>
+        /// <param name="userBody">user body detection result.</param>
+        /// <returns>Float score value (-1.0 ~ 1.0).</returns>
         public static float Similarity(List<Point> userBody)
         {
             if (userBody.Count != System.Enum.GetNames(typeof(PoseDetector.BodyPart)).Length)