deepinsight / deepinsight/insightface
trans_points3d(
Open
- Dominant language
- Python
- Stars
- 29.7k
- Forks
- 6.1k
- PR merge metrics
- No merged PRs in 30d
Description
```
def trans_points3d(pts, M):
scale = np.sqrt(M[0][0] * M[0][0] + M[0][1] * M[0][1])
```
请问为啥在进行3D点坐标转换的时候,这个scale缩放因子只用矩阵的第一行?而不是np.sqrt(M[0][0] * M[0][0] + M[1][1] * M[1][1])
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.