我有一个需要转换为opencv的matlab代码。我转换几乎所有的代码,但卡在两行。下面的代码是matlab代码。
distances=pdist(matchLocations);
tree=linkage(distances);
clusters=cluster(tree,'cutoff',Th_Clustering,'depth',depth);
我计算距离并将其保存在Mat对象中。但不知道如何聚类它们。我已阅读有关hierarchicalClustering
的文档,但无法理解如何使用它来获取我需要的结果。
你可以给我一些关于如何按照matlab代码进行聚类距离的例子或建议吗?!
提前致谢