Emad AlOmari
Emad AlOmari
Still having this error after editing the code: ir ./checkpoint/IROS18/pydnet --resolution 1 2021-06-20 15:51:16.515515: I tensorflow/core/platform/cpu_feature_guard.cc:140] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2...
It worked after using python3 instead of python.
I am using this command: python3 experiments.py --datapath dataset/secuences/00/image_0 --filenames 000000.png --checkpoint_dir checkpoint/IROS18/pydnet --resolution 2 and getting this error: FileNotFoundError: [Errno 2] No such file or directory: '000000.png'
I have added the data file names into a text file and I am having the following error now: InvalidArgumentError (see above for traceback): input and filter must have the...
you can add the following lines to all_bbox_generated function in deepstream_app_main.c, then compile the file and copy the new bin file to the bin folder. ``` float left = (float)obj->rect_params.left;...
I am getting this error when I try to do the rtsp: GLib-GObject-WARNING **: 14:04:56.299: g_object_get_is_valid_property: object class 'GstUDPSrc' has no property named 'pt'
> You need to use the `export_yoloV5.py` file from the `utils` folder in this repo to export the ONNX model from the YOLOv5 PyTorch model (as said in the link...
Thank you, it is working now!
> > 您是否使用带有检测的 RTSP 输出? > > Thank you for your answer. My problem has been solved How? I am getting this error when I try to do the rtsp:...
Step 1: You can print that by adding the following lines to all_bbox_generated function in deepstream_app_main.c: ``` float left = (float)obj->rect_params.left; float top = (float)obj->rect_params.top; float width = (float)obj->rect_params.width; float...