pygoturn icon indicating copy to clipboard operation
pygoturn copied to clipboard

PyTorch implementation of GOTURN object tracker: Learning to Track at 100 FPS with Deep Regression Networks (ECCV 2016)

Results 5 pygoturn issues
Sort by recently updated
recently updated
newest added

I am trying to train GOTURN, but the loss explodes. Is it a version issue

Hi man, thank you for your code. I want to train with custom video. I first apply annotation on sample images of alov dataset with rectangle but the rectangle is...

Can this track multiple humans in the same video stream?

```python def uncenter(self, raw_image, search_location, edge_spacing_x, edge_spacing_y): self.x1 = max(0.0, self.x1 + search_location.x1 - edge_spacing_x) self.y1 = max(0.0, self.y1 + search_location.y1 - edge_spacing_y) self.x2 = min(raw_image.shape[1], self.x2 + search_location.x1 -...