Pose estimation

Pose estimation1. Enable optimal performance of the motherboard1.1. Enable MAX power mode1.2. Enable Jetson clocks2. Pose estimation: imageEffect preview3. Posture estimation: videoEffect preview4. Posture estimation: real-time detection4.1. USB cameraEffect preview4.2, CSI cameraEffect previewReferences

Using Python to demonstrate Ultralytics: Pose Estimation in images, videos, and real-time detection.

1. Enable optimal performance of the motherboard

1.1. Enable MAX power mode

Enabling MAX Power Mode on Jetson will ensure that all CPU and GPU cores are turned on:

1.2. Enable Jetson clocks

Enabling Jetson Clocks will ensure that all CPU and GPU cores run at maximum frequency:

2. Pose estimation: image

Use yolo11n-pose.pt to predict the images under the ultralytics project (not the images that come with ultralytics).

Enter the code folder:

Run the code:

Effect preview

Yolo recognition output image location: /home/jetson/ultralytics/ultralytics/output/

image-20241230170043997

Sample code:

3. Posture estimation: video

Use yolo11n-pose.pt to predict the video under the ultralytics project (not the video that comes with ultralytics).

Enter the code folder:

Run the code:

Effect preview

Video location of yolo recognition output: /home/jetson/ultralytics/ultralytics/output/

image-20241230170512899

Sample code:

4. Posture estimation: real-time detection

4.1. USB camera

Use yolo11n-pose.pt to predict the USB camera screen.

Enter the code folder:

Run the code: Click the preview screen and press the q key to terminate the program!

Effect preview

Yolo recognizes the output video location: /home/jetson/ultralytics/ultralytics/output/

image-20241230171319586

Sample code:

4.2, CSI camera

Use yolo11n-pose.pt to predict the CSI camera screen.

Enter the code folder:

Run the code: Click the preview screen, press the q key to terminate the program!

Effect preview

Yolo recognizes the output video location: /home/jetson/ultralytics/ultralytics/output/

image-20241230171927586

Sample code:

References

https://docs.ultralytics.com/tasks/pose/