Intel Realsense problem #17822
-
Hi, I was using intel real sense camera D435I and integrated it with YOLOv11. After some time, my code no longer works. Here is the code:
And here is the error message: Could you help? Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
👋 Hello @anbarsanti, thank you for sharing your issue and for your interest in using Ultralytics 🚀! Below are some pointers and resources that might assist you while an Ultralytics engineer takes a closer look at your report. From your description, it seems like you're encountering a 🐛 Bug. When reporting an issue, kindly ensure you're providing a minimum reproducible example (MRE). Your shared code snippet is helpful; however, double-check if additional context (such as your Recommendations
Community Support📢 In the meantime, feel free to engage with the Ultralytics community for real-time support or discussions:
Status and CI VerificationYou can also confirm that all tests are currently passing by checking the Ultralytics CI badge below: An Ultralytics engineer will assist you soon to help resolve your issue. Thank you for your patience and for being part of the Ultralytics community! 🚀✨ |
Beta Was this translation helpful? Give feedback.
-
@anbarsanti the error indicates that the |
Beta Was this translation helpful? Give feedback.
@anbarsanti the error indicates that the
frame
object passed tomodel.track()
is not in a format supported by YOLOv11. Instead of passingframe
directly, convertcolor_image
(which is the actual numpy array) for inference. Update themodel.track()
call to usecolor_image
. Let me know if you need further clarification! For supported formats, refer to YOLO Predict Modes.