Replies: 1 comment
-
这个主要是为了和 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The following section is the selection of affine transformation source and target points in the mmpose
我的问题是,为什么目标点
dst[1, :] = np.array([dst_w * 0.5, dst_h * 0.5]) + dst_dir
的定义中, 添加的偏置是dst_dir = np.array([0., dst_w * -0.5])
。上述运算将宽度信息加在了高度信息中。 我认为应该是dst_dir = np.array([dst_w * -0.5, 0])
。 对于256*256的目标尺寸w和h是相同的可能不会有问题,但是其他的呢?Beta Was this translation helpful? Give feedback.
All reactions