Long Chen

Results 32 comments of Long Chen

The ray back-projected by a 2D point can be determined by two 3D points, the one is the camera location we already have, the other is a point on the...

Hi guys, "Tracking Multiple People Online and in Real Time" used both binary integer programming solver and "AL-ICM" for tracking. They used to have a matlab version of the source...

@fandulu Yes, in the paper the graph partition is only for target creation. Hungarian is enough for the bipartite matching problem, but if you would like to use some different...

Hey sorry for the late reply. The vispy requires some dependencies, maybe you can try it with https://github.com/longcw/crossview_3d_pose_tracking#3d-visualization-with-docker. Or if you just want to see the result but not care...

`fatal error: cuda.h: No such file or directory` Is your cuda installed correctly?

`os.makedirs()` shouldn't be slow. Maybe you can check if the output_dir is a reasonable path in your computer.

@azuryl Imagine that a 2D point in the image should be back-projected as a ray in 3-space. The 3D ray can be determined using 2 3D points, so we use...

It supports batch_size > 1. You can comment the if statement in roi_pooling_cuda.c and rebuild it.

You are right, this bug is introduced in commit https://github.com/longcw/yolo2-pytorch/commit/7fa25e1653eaf2dc84c0bd50804a1530f88501ac. Thank you for pointing this out.

You should use absolute import (import from root) or `from .utils.xxx import xxx` in python3. 2017-12-19 8:58 GMT+08:00 Lu Yang : > I get a similar Error (Python2.7): > >...