-
-
Notifications
You must be signed in to change notification settings - Fork 16.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
improve image quality of cropped jpg files by disabling chroma subsampling #7007
Comments
👋 Hello @LaserBorg, thank you for your interest in YOLOv5 🚀! Please visit our ⭐️ Tutorials to get started, where you can find quickstart guides for simple tasks like Custom Data Training all the way to advanced concepts like Hyperparameter Evolution. If this is a 🐛 Bug Report, please provide screenshots and minimum viable code to reproduce your issue, otherwise we can not help you. If this is a custom training ❓ Question, please provide as much information as possible, including dataset images, training logs, screenshots, and a public link to online W&B logging if available. For business inquiries or professional support requests please visit https://ultralytics.com or email [email protected]. RequirementsPython>=3.7.0 with all requirements.txt installed including PyTorch>=1.7. To get started: git clone https://github.com/ultralytics/yolov5 # clone
cd yolov5
pip install -r requirements.txt # install EnvironmentsYOLOv5 may be run in any of the following up-to-date verified environments (with all dependencies including CUDA/CUDNN, Python and PyTorch preinstalled):
StatusIf this badge is green, all YOLOv5 GitHub Actions Continuous Integration (CI) tests are currently passing. CI tests verify correct operation of YOLOv5 training (train.py), validation (val.py), inference (detect.py) and export (export.py) on MacOS, Windows, and Ubuntu every 24 hours and on every commit. |
@LaserBorg good news 😃! Your original issue may now be fixed ✅ in PR #7008. To receive this update:
Thank you for spotting this issue and informing us of the problem. Please let us know if this update resolves the issue for you, and feel free to inform us of any other issues you discover or feature requests that come to mind. Happy trainings with YOLOv5 🚀! |
The current save_one_box() is not saving anything in the desired folder. |
@Mob-Nikhil898 saving crops works correctly. We've created a few short guidelines below to help users provide what we need in order to start investigating a possible problem. How to create a Minimal, Reproducible ExampleWhen asking a question, people will be better able to provide help if you provide code that they can easily understand and use to reproduce the problem. This is referred to by community members as creating a minimum reproducible example. Your code that reproduces the problem should be:
For Ultralytics to provide assistance your code should also be:
If you believe your problem meets all the above criteria, please close this issue and raise a new one using the 🐛 Bug Report template with a minimum reproducible example to help us better understand and diagnose your problem. Thank you! 😃 |
Thank you bro, I messed up my detect.py settings that's why it was not saving . My bad. |
@Mob-Nikhil898 no worries at all! It happens to the best of us 😊. If you encounter any other issues or have further questions, feel free to ask. Happy to help anytime! |
Search before asking
Description
opencv was used to save ROI crops, but imwrite is limited at jpg quality since it uses 2x2 chroma subsampling, often reffered to as "4:2:2" (-> jpg is YUV color space) even when setting cv2.IMWRITE_JPEG_QUALITY to 100.
Quality loss is clearly visible when working on images with highly saturated colors or sharp color changes.
I propose using pillow to write jpg files, with subsampling flag set to False. It is already in the requirements and the existing numpy matrix can easily get converted to pil format.
Use case
image quality of the crops is crucial when cropped output files are further used as training data, while jpg compression still offers great benefit-cost ratio in filesize and compression speed compared to lossless (png) or even uncompressed (bmp) formats.
Additional
I have a PR ready.
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: