Results 3 issues of WaterMelon

定位到smoke_coder.py ![image](https://user-images.githubusercontent.com/14249563/184873084-c7a28818-41de-42f4-9fc1-4632a8605b0a.png) 矩阵求逆报错 ![image](https://user-images.githubusercontent.com/14249563/184873183-7bd74d38-8a33-4e80-87f5-5926c52b63f5.png)

![image](https://github.com/NVlabs/FB-BEV/assets/14249563/a5c8fe91-53c3-4268-b867-096d13a7a487) Can you share a visual script? thanks

in https://github.com/cedricxie/second_ros/blob/master/src/second_ros/second/second/core/non_max_suppression/nms_gpu.py I test the following code ```python if __name__ == "__main__": import numpy as np box1 = np.array([[0,0,20,20,-0.1]]) box2 = np.array([[0,0,20,20,-0.1]]) print(rotate_iou_gpu(box1, box2)) ``` Obviously it should print 1,but...