CTracker icon indicating copy to clipboard operation
CTracker copied to clipboard

Results 25 CTracker issues
Sort by recently updated
recently updated
newest added

Bumps [numpy](https://github.com/numpy/numpy) from 1.16.3 to 1.22.0. Release notes Sourced from numpy's releases. v1.22.0 NumPy 1.22.0 Release Notes NumPy 1.22.0 is a big release featuring the work of 153 contributors spread...

dependencies

Thank you for your work In the paper, you wrote that the effect is improved after adding Reid. How should I add Reid

When I run the test I got result = self.forward(*input, **kwargs) TypeError: forward() missing 1 required positional argument: 'inputs' I debug the test ,then I find the error occur in...

Bumps [pillow](https://github.com/python-pillow/Pillow) from 8.2.0 to 9.0.1. Release notes Sourced from pillow's releases. 9.0.1 https://pillow.readthedocs.io/en/stable/releasenotes/9.0.1.html Changes In show_file, use os.remove to remove temporary images. CVE-2022-24303 #6010 [@​radarhere, @​hugovk] Restrict builtins within...

dependencies

Thank you for your amazing work. I trained a retinanet model on my customized dataset. The detection works well on the RetinaNet model. However, I load the pretrained model in...

Bumps [opencv-python](https://github.com/skvark/opencv-python) from 4.1.0.25 to 4.2.0.32. Release notes Sourced from opencv-python's releases. 4.2.0.32 opencv-python: https://pypi.org/project/opencv-python/ opencv-contrib-python: https://pypi.org/project/opencv-contrib-python/ opencv-python-headless: https://pypi.org/project/opencv-python-headless/ opencv-contrib-python-headless: https://pypi.org/project/opencv-contrib-python-headless/ OpenCV version 4.2.0. Changes: macOS environment updated from xcode8.3...

dependencies

i convert model to onnx with following code: device = 'cuda' if torch.cuda.is_available() else 'cpu' modelpath = './model_final.pt' model = torch.load(modelpath) model.to(device) model.eval() dummy_input = torch.randn(1, 3, 512, 512).to(device) onnx_path...

I would like to ask, during the network training process, is it necessary to freeze ResNet50 to keep the parameters of the feature extraction network unchanged, and only train the...

I edited the MOT17 dataset by referring to issue 22 and success run the model with only person class. However, after I added car class to this csv file ,...

Thank for your great work, now i want to train on my datasets, i hava got the json label files using labelImg,so how can i transform them to the csv...