-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
👋 Hello @IASUI, thank you for your interest in Ultralytics 🚀! We recommend a visit to the Docs for new users where you can find many Python and CLI usage examples. Many common questions may already be addressed there. From your description, it seems like this might be related to the ZED camera image preprocessing. If this is a 🐛 Bug Report, we kindly ask that you provide a minimum reproducible example to help us investigate further. This typically includes a short, self-contained script with all relevant code and details to reproduce the issue (including input data, model configuration, and expected/observed behavior). Additionally, to ensure the latest updates are applied and no prior fixes are missed, please confirm you’ve updated to the latest version of the pip install -U ultralytics Additional ContextFor image preprocessing, you might want to double-check the image data type, format, and pixel values coming from the ZED camera. Differences in image formats (e.g., color channels, data type, or scaling) could potentially cause additional preprocessing overhead. Join the Ultralytics community where it suits you best 🎧:
EnvironmentsYOLO can be run in various verified environments for optimal performance, including:
StatusIf this badge is green, all Ultralytics CI tests are currently passing. CI tests verify correct operation of all YOLO Modes and Tasks on macOS, Windows, and Ubuntu every 24 hours and on every commit. This is an automated response to help guide you, but no worries—a member of our Ultralytics engineering team will also assist you as soon as possible! 😊 |
Beta Was this translation helpful? Give feedback.
-
The increase in preprocessing time for direct ZED 1080p images could be due to additional operations required to handle the raw image format, such as color conversion, resizing, or memory alignment. To optimize, ensure the frame format matches the expected input format of the model (e.g., RGB) and verify preprocessing steps are efficient. Profiling each step in the pipeline may help identify bottlenecks. For further insights, refer to the YOLO TensorRT documentation. |
Beta Was this translation helpful? Give feedback.
-
What if you use |
Beta Was this translation helpful? Give feedback.
What if you use
img[..., :3].copy()
in prediction?