You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using 2 IMX219 camera in Jetson Xavier NX when i am trying to run demo_model.py............ In grabber.py i have added my custom camera code tooo which i have already tried it and its working fine.... but i am getting error as you can see below...
The text was updated successfully, but these errors were encountered:
Try to add a dimension to the image tensor, each input frame should have shape [1, 480, 640, 3] in your case. You seem to be missing the 1 in the first dimension.
The error is a different one now. You are feeding an image with shape 360 x 640 to a placeholder with shape 480 x 640. Either resize your image to the target shape or change the shape of the placeholder.
I am using 2 IMX219 camera in Jetson Xavier NX when i am trying to run demo_model.py............ In grabber.py i have added my custom camera code tooo which i have already tried it and its working fine.... but i am getting error as you can see below...
The text was updated successfully, but these errors were encountered: