[D]WG

Results 9 comments of [D]WG

Hi @vitacon, I am curious that have you managed to run the code on Windows? I followed the instruction on the front page and managed to `pip install -r requirements.txt`...

I also tried to change `python3` into `python`. The previous issue is gone but replaced with the followings. Before that, I also randomly tried `setx.exe PYTHONPATH` and `set PYTHONPATH` according...

Thanks for the reply! I tried everything I could think of, however, it still doesn't work... ``` (tapnet) Z:\Wei\tapnet>set PYTHONPATH=Z:\Wei\tapnet (tapnet) Z:\Wei\tapnet>python ./live_demo.py Traceback (most recent call last): File "Z:\Wei\tapnet\live_demo.py",...

Thanks for the reply! I finally figured it out with the help of ChatGPT. The Windows equivalence for `export PYTHONPATH=`(cd ../ && pwd)`:`pwd`:$PYTHONPATH` is `set PYTHONPATH=%cd%\..\;%cd%;%PYTHONPATH%`.

Now I have a more specific goal and want to estimate what GPU would be required! I want to track 20 points on local for real-time 1080p(1920x1080) videos at 10fps....

Really appreciate your prompt response and let me elaborate the current situation. I want to use tapnet for **real-time** tracking of several **identical-look black spheres** under a clear (i.e., white)...

Hi Carl, thanks again for your detailed responses! They are always clear and insightful. Please see below for my follow-ups. > I would encourage you to just record some data,...

Hi Carl, I have some updates! I studied through the code base and managed to run `live_demo.py` on Windows with our CMOS camera. I followed the new installation guidance and...

Following up on 1, I would like to clarify that the first use of `jax.block_until_ready` makes sense if blocking on `_` and the second use of `jax.block_until_ready(prediction["tracks"])` is unnecessary. Is...