cvg / SOLD2

Joint deep network for feature line detection and description
MIT License
541 stars 73 forks source link

In line_matching.py line68 is a bug? #53

Closed blueFeather111 closed 2 years ago

blueFeather111 commented 2 years ago

now it is

scores[~valid_points1.flatten()] = -1"

whether it should be

scores[~valid_points1.flatten(), :] = -1

?

rpautrat commented 2 years ago

Hi, these two lines are equivalent in Python...