yolov4-deepsort icon indicating copy to clipboard operation
yolov4-deepsort copied to clipboard

Object tracking implemented with YOLOv4, DeepSort, and TensorFlow.

Results 122 yolov4-deepsort issues
Sort by recently updated
recently updated
newest added

Hi all, Thank you for sharing the community. Currently, I use your model for my camera stream, but after a short time, the model cannot read the frame on the...

Hi, I'm kazuki-can. Thanks for your attractive work. Since I'm going to write a paper about Computer Vision with this repository, I would like to know the training parameter for...

In Multi-GPUs environment, previous code occur `ValueError: Memory growth cannot differ between GPU devices` in `object_tracker.py` file. **- Previous `object_tracker.py`** ```python physical_devices = tf.config.experimental.list_physical_devices('GPU') if len(physical_devices) > 0: tf.config.experimental.set_memory_growth(physical_devices[0], True)...

I was just wondering after we run the video say on custom weights. I would like to evaluate the performance of the tracking. is there any way to output all...

Hi everyone, I cloned this source. It is very interesting and helpful to many people. I used this source for my project. But, I wanted to crop this object after...

Hello, why do I only have the first frame of the video to be detected, and then there is no detection frame?

Good afternoon, I did everything step by step and did not change anything in Google Colab through your notepad. But absolutely nothing was detected. I can't figure out what the...

i cant add conversion of yolor darknet to pb

Hey @MatPiech, Can you please help me. I tried you [code ](https://github.com/MatPiech/DeepSORT-YOLOv4-TensorRT-OpenVINO)but I facing issue with openvino model, I follow all your instructions but I get this error: ```[ INFO...

I already have a YoloV4-Tiny model that trained on grayscale image. I change save_model.py input layer to ``` if FLAGS.grayscale: input_layer = tf.keras.layers.Input([FLAGS.input_size, FLAGS.input_size, 1]) else: input_layer = tf.keras.layers.Input([FLAGS.input_size, FLAGS.input_size,...