longyunf / radiant

21 stars 3 forks source link

Engineering environmental issues #5

Open CleanSeaSalt opened 9 months ago

CleanSeaSalt commented 9 months ago

Hello, I would like to ask what is the specific environment required for this project? What are the requirements for Ubuntu version number, pytorch and corresponding cuda? In Ubuntu20.04 pytorch 1.8 python=3.7 environment, I pip install mmdet3d==0.16.0 failed. I really don’t know what kind of environment should be configured. The following is my relevant configuration image 5ea7a09f14aef724709a60f77ddc29b

CleanSeaSalt commented 9 months ago

pip install mmdet3d==0.16.0 reports an error when compiling image image image image

longyunf commented 9 months ago

Please refer to MMDetection3D documents (https://mmdetection3d.readthedocs.io/en/latest/get_started.html) for detailed requirements and instructions.

I use the following commands to install mmdet3d:

git clone https://github.com/open-mmlab/mmdetection3d.git
cd mmdetection3d git checkout v0.16.0 pip install -v -e .

CleanSeaSalt commented 9 months ago

Please refer to MMDetection3D documents (https://mmdetection3d.readthedocs.io/en/latest/get_started.html) for detailed requirements and instructions.

I use the following commands to install mmdet3d:

git clone https://github.com/open-mmlab/mmdetection3d.git cd mmdetection3d git checkout v0.16.0 pip install -v -e .

Thank you! I have solve this problem . Now I am using the pre-trained model for training and evaluation, and then I want to ask if it can be visualized like this image Thanks much!

longyunf commented 8 months ago

Please refer to standard mmdetection3d code for plotting projected 3D boxes on images. (https://mmdetection3d.readthedocs.io/en/latest/user_guides/visualization.html)

As for radar offsets (cyan arrows), you can access output variable radarOffset (https://github.com/longyunf/radiant/blob/cf5355396d42ef17940e29ef8f9e3cabfd8035c3/lib/my_model/radiant_fcos3d_network.py#L1002C78-L1002C78) and plot them with matplotlib.pyplot.arrow at radar pixels.

CleanSeaSalt commented 8 months ago

Thanks!

xiaobh1519 commented 5 months ago

Hello, I would like to ask what is the specific environment required for this project? What are the requirements for Ubuntu version number, pytorch and corresponding cuda? In Ubuntu20.04 pytorch 1.8 python=3.7 environment, I pip install mmdet3d==0.16.0 failed. I really don’t know what kind of environment should be configured. The following is my relevant configuration image 5ea7a09f14aef724709a60f77ddc29b

May I ask what cuda version do you have and what kind of device do you have(RTX2080 or RTX 3090 or others)? Thanks a lot!

stanny880913 commented 4 weeks ago

Thanks!

Hello, I would like to ask you about the visualization program. Have you ever made it? I would like to ask if there are any programs that can be open sourced? Thanks