second.pytorch
second.pytorch copied to clipboard
how to use kittiviewer
Hello,everyone! I successfully train my model and evaluate KITTI results. And when I began to use kittiviewer to visualize my results in bev/rgb/3dpointcloud area, I came across a problem that I cannot make the right connection between my server and my local computer. I have read the kittiviewer part of README, but don't which step is running on server, or which step is running on my computer. And what I know is that I should use SSH to login on my server. But don't know what to do specifically.
Thanks a lot if you guys can help me to establish the connection.
you can use mobaxterm to establish a connect between serverport with local port, such as https://blog.csdn.net/qq_22291287/article/details/82712221 But after I connect the port ,frontknd get a error : HTTP 404
Thank you! And I want to know what "backend" means, I set the port as 1234, and the backend url is 0.0.0.0:1234, but when I entered it in the HTML Tutorial, it always says"error: load kitti info error, please check your backend!"
do you have the error "HTTP 404" when run python ./kittiviewer/backend/main.py main --port=xxxx in your server/local. Could you show me your Screenshots when you open the web at local
大家好! 我成功地训练了我的模型并评估了KITTI结果。当我开始使用kittiviewer在bev / rgb / 3dpointcloud区域中可视化结果时,遇到了一个问题,即我无法在服务器和本地计算机之间建立正确的连接。我已经阅读了README的kittiviewer部分,但没有在服务器上运行哪个步骤,或者在我的计算机上运行了哪个步骤。 我所知道的是,我应该使用SSH登录服务器。但是不知道该怎么做。
非常感谢你们能帮助我建立连接。 @gujiaqivadin
second.pytorch version 1.5.1
1.run python backend.py main --port=xxxx
in your server.
2.run python -m http.server
in your server to launch a local web server.
3.run ssh -L xxxx:127.0.0.1:8000 servername@serverIP
in your computer
4.open http://127.0.0.1:xxxx/ in the browser on your computer