-
Notifications
You must be signed in to change notification settings - Fork 21.3k
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
Problem with ZED and YOLO3 on Jetson TX2 #949
Comments
Hi, The stereolabs support said that could be necessary to share with the ZED SDK the CUDA context of the application. Is it possible? Thanks! |
I can into the same issue, running yolo v3 on TX2 hangs with ZED camera. |
Hi. I am facing the same issue now too. Did anyone get yolov3 running ? |
If it's a CUDA context issue, using the same context in yolo and the ZED SDK should solve the issue.
Someone had a similar issue in python, and his solution was to swap the current context depending on the function to call: here This guy seems to got it working recently, it might worth letting a comment to check what he used. Notice that he uses a laptop, is this a Jetson-specific issue?https://www.youtube.com/watch?v=EgaUq_dWclQ |
Hi,
It may indeed be a context issue, but I still don't know exactly what's happening. However, the difference between yolov3-tiny and regular yolov3 might come from the memory, it may be too much for the TX2. |
Hi, |
Do you fixed the error? |
@yuye1992 @shuxiao9058 For the memory usage issue, you should make sure that the config file is correct, specifically in yolo3.cfg : Lines 2 to 7 in f86901f
It should be
|
Hi,
I'm having some problems in processing a stream from a ZED camera with yolo3 (darknet) on a TX2.
I have done lots of tests and at the moment I'am trying to detect objects in an image loaded from the filesystem: the network can't find any objects if the ZED is opened (no need to call the grab function to produce this malfunctioning). Everything works well if I do not open the ZED.
Loading yolo3-tiny everything works well also with the ZED 'open'.
Any suggestion?
Thanks!
The text was updated successfully, but these errors were encountered: