转载请注明出处:小锋学长生活大爆炸[xfxuezhagn.cn]
如果本文帮助到了你,请不吝给个[点赞、收藏、关注]哦~
import pycolmap
# 比较推荐的参数
options = {
"peak_threshold": 0.0066667,
"edge_threshold": 10,
"first_octave": -1,
"num_octaves": 4,
"normalization": pycolmap.Normalization.L2,
# "max_num_features": 10000
}
sift = pycolmap.Sift(options=options, device="auto")
k, d= sift.extract(img)
- keypoints: Nx4 的数组;格式为: x坐标, y坐标, scale, orientation。
- descriptors: Nx128 的数组;L2-normalized 后的描述符。