Open jszgz opened 4 years ago
For example, when you compute g_lt , 1 + (q_lt[..., :N].type_as(p) - p[..., :N])
is right, but 1 + (q_lt[..., N:].type_as(p) - p[..., N:])
should be 1 + ( p[..., N:] - q_lt[..., N:].type_as(p))
, which is P12(X0,y1) in my figure
It's right
This computation is different from standard bilinear algorithm, is it wrong or another algorithm?