Leandro Di Bella
Leandro Di Bella
Update : I could get as output the masks, scores and predicted classes by modifying forward_test. I have added those few lines at the end of the definition : `...
Dear People, I could solve the problems and parse the model to TensoRT. You need to remove the PPM_ONNX to have decent result from ONNX. Then you need to put...
Dear @LiZheng1997, before going into the explications, I have put my scripts in the following repository : https://github.com/leandro-svg/SparseInst_TensorRT . I have build everything on an edge device (Nvidia Jetson TX2)...
First of, Thanks to authors of SparseInst 😉 And I'll check the changes about those two lines as well as the Clip node problem. Thank you
I had this error aswell. I could solve it by using the version 13. Hope it helps.
Has the video input been evaluated? If it's the case then you asked your results to be saved in the result directory but it looks like this directory doesn't even...
Dear @BibibNanana, When looking at your logs, it looks like you have two errors and one of them is about your own trained model : _--> Could not find encoder...
Additionally, your video format may not be the right one to use, cfr line 154 : _fourcc=cv2.VideoWriter_fourcc(*"x264"),_ , you could try to change to "mp4v" .
It is linked to your videoWriter_fourcc. You could change the x264 format to "mp4v" or "h264" : fourcc = cv2.VideoWriter_fourcc(*'h264') #or #fourcc = cv2.VideoWriter_fourcc(*'x264') #or #fourcc = cv2.VideoWriter_fourcc(*'mp4v') If this...
You can check this git issue where @jinfagang asked about DCN aswell : https://github.com/onnx/onnx/issues/2395