我正在使用 Python 和 OpenCV 3.0,我正在尝试评估两个图像的 SIFT 描述符。更具体地说,我对重复率感兴趣。在 C++ 中有这个函数用于执行评估:
cv::evaluateFeatureDetector(img_1c, img_2c, h12, &key_points_1, &key_points_2, repeatability, corrCounter);
Run Code Online (Sandbox Code Playgroud)
但是,我还没有在 Python 中找到任何实现,我也不太明白如何(以及是否)可以使用此函数。有没有其他方法可以计算python中的重复率?
我在 Ubuntu 19.10 上,我正在尝试安装 proj 7.2.0
根据网站,我应该使用这个:
sudo apt-get install proj-bin
Run Code Online (Sandbox Code Playgroud)
但似乎这个命令安装的是 5.2.0 版本:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
libappindicator1 libdbusmenu-gtk4
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
proj-bin
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 63,9 kB of archives.
After this operation, 245 kB of additional …Run Code Online (Sandbox Code Playgroud) 我正在 MeshLab 上处理一些 LiDAR 数据,我正在寻找一种方法来选择一大块顶点并将它们传输到新层。
我知道您可以将选择的面移动到新图层,但我没有网格 - 只有点。
是否有对顶点执行相同操作的解决方法?