我试图从这里运行J-Linkage算法的Matlab代码:http://www.diegm.uniud.it/fusiello/demo/jlk/
但是,我收到以下错误来运行它:
未定义函数'pDistJaccard'用于'logical'类型的输入参数。
clusterPoints中的错误(第27行)
Y = pDistJaccard(totdbin');
testJLinkage中的错误(第25行)
[T,Z,Y,totdbin] = clusterPoints(totd,inliersThreshold);
我没有改变代码中的任何内容。我正在使用Windows机器。
答案 0 :(得分:1)
该函数的源代码包含在'CSources'文件夹中。它使用mex函数编码,因此您需要在Matlab中编译。请参阅“mex”函数