文件名称:gmatch:使用 Groth 算法匹配目录
文件大小:20KB
文件格式:ZIP
更新时间:2024-07-15 09:59:49
Python
使用 Groth 方法匹配目录 二维坐标列表的模式匹配算法 Eduard J. Groth 1986 AJ 19, 5 Gmatch 是在 GPL(版本 3 或任何更高版本)下发布的 示例用法 >>> from gmatch import gmatch >>> # load cat1 and cat2 from somewhere >>> # they are numpy arrays >>> # N rows, 2 columns >>> cat1.shape (20, 2) >>> cat2.shape (20, 2) >>> matches = gmatch(cat1, cat2, eps = 1e-3 ) >>> # eps is the *relative* tolerance in xy >>> matches None >>> # if the return value i
【文件预览】:
gmatch-master
----MANIFEST.in(54B)
----README.rst(1KB)
----LICENSE.txt(34KB)
----AUTHORS.txt(107B)
----gmatch()
--------triangle.py(6KB)
--------__init__.py(5KB)
----setup.py(723B)
----.hgtags(47B)
----.hgignore(98B)
----testing()
--------simul-nomatch.py(1KB)
--------simul.py(1KB)
--------matching.py(657B)