csharp1b5fd5de
| 1 | namespace WebcamMcp.Shared; |
| 2 | |
| 3 | public static class MotionAnalysis |
| 4 | { |
| 5 | public static string ClassifyMotion(double score) |
| 6 | { |
| 7 | if (score < 5) |
| 8 | { |
| 9 | return "still"; |
| 10 | } |
| 11 | |
| 12 | if (score < 15) |
| 13 | { |
| 14 | return "low"; |
| 15 | } |
| 16 | |
| 17 | if (score < 35) |
| 18 | { |
| 19 | return "medium"; |
| 20 | } |
| 21 | |
| 22 | return "high"; |
| 23 | } |
| 24 | } |
| 25 | |