Created
October 29, 2024 16:53
-
-
Save RizwanMunawar/f84d034142f21fd837313f5ab66c1b2d to your computer and use it in GitHub Desktop.
Pose Estimation using Ultralytics YOLO11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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