Skip to content

Instantly share code, notes, and snippets.

@RizwanMunawar
Created October 29, 2024 16:53
Show Gist options
  • Save RizwanMunawar/f84d034142f21fd837313f5ab66c1b2d to your computer and use it in GitHub Desktop.
Save RizwanMunawar/f84d034142f21fd837313f5ab66c1b2d to your computer and use it in GitHub Desktop.
Pose Estimation using Ultralytics YOLO11
from ultralytics import YOLO
# Load a model
model = YOLO("yolo11n-pose.pt") # load an official model
# Predict with the model
results = model("https://ultralytics.com/images/bus.jpg") # predict on an image
results = model("Path/to/video/file.mp4") # predict on a video
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment