Replies: 1 comment 2 replies
|
Hello! 😊 Yes, it's possible to have YOLOv8-pose model estimate a person's pose while also detecting other objects like dogs, cars, books, etc. You can achieve this by training the model on a dataset that includes both the pose annotations for people and bounding box annotations for other objects you're interested in detecting. To train a model that can detect additional objects alongside pose estimation, you would start with the pre-trained YOLOv8-pose model and fine-tune it on a dataset that includes your new classes (e.g., dogs, cars, books). Ensure your dataset contains images annotated with both skeleton points for humans and bounding boxes for the other objects. Here's a simplified example of how you might start the fine-tuning process: yolo train data=your_dataset.yaml model=yolov8-pose.ptIn Remember, the key is in the dataset preparation. Ensure your annotations are accurate for both the poses and the additional objects. Happy training! 🚀 |
Uh oh!
There was an error while loading. Please reload this page.
Hello.
Is it possible to have the yolov8-pose model estimate a person's pose while also detecting other objects?
For example, yolov8-pose can detect people and their skeleton points while also detecting dogs, cars, books, etc.
If that's possible,
Is it possible to train a model that can already detect people and estimate posture to detect dogs, cars, books, etc.?
For example, if the pre-trained model only learns dog, car, and book detection, the new model can detect dog, car, book, and person and do pose estimation.
All reactions