Replies: 2 comments
-
👋 Hello @Xtr3amS, thank you for your interest in Ultralytics 🚀! We recommend checking out the Docs for general guidance and examples of YOLO operations. Many Python and CLI examples are available there, and they might help you get started with your use case. If this is a 🐛 Bug Report, please provide a minimum reproducible example including code, dependencies, and data to allow us to reproduce and assist more effectively. For custom ❓ Questions like this one, it helps to include relevant details such as your code implementation, examples of your data, and logs or outputs you’ve observed. If you're working with object detection results and categorization, it might also be helpful to verify that you're following our guides, such as the Model Training Tips. Considering your interest in categorizing and organizing photos based on YOLO’s object detection outputs, this could likely involve post-processing of YOLO results in Python. YOLO outputs include bounding boxes and class labels, which you should be able to use to achieve the desired functionality. Ultralytics engineers will assist further soon! 😊 UpgradeEnsure you are running the latest version of the pip install -U ultralytics EnvironmentsFor fast setup and experimentation, YOLO can be used in any of the following verified environments (complete with dependencies preinstalled):
Community SupportFor additional guidance or to share your results, join our vibrant Ultralytics community: StatusIf the CI badge is green, all Ultralytics CI tests are passing, meaning that YOLO Modes and Tasks have been verified across macOS, Windows, and Ubuntu. |
Beta Was this translation helpful? Give feedback.
-
@Xtr3amS yes, you can achieve this by running YOLO for object detection, extracting the predictions (e.g., class labels and bounding box data), and then writing a script to group or move images based on detected classes. The results object in YOLO provides the necessary data for this task. For implementation details, refer to the Ultralytics YOLOv8 documentation on result extraction. Let us know if you need further clarification! |
Beta Was this translation helpful? Give feedback.
-
Hello,
We can detect objects in photos using YOLO. So can we categorize these results?
I am trying to do the following: For example, I have a folder with 15 thousand photos. After scanning the photos in this folder with YOLO and performing object detection, I want to select them according to the objects it finds. For example, I want to be able to select photos containing cats, seats, and people. Can I tag them or, for example, have them put photos containing cats in one folder and photos containing people in a different folder? Or can I find photos containing seats with any command? I hope I could explain what I mean.
To summarize, I want to have 15000 photos detected with yolo and then search and select them according to the objects they contain.
Beta Was this translation helpful? Give feedback.
All reactions