Reducing threshold:

Signed-off-by: James Ketrenos <james_gitlab@ketrenos.com>
This commit is contained in:
James Ketrenos 2020-01-10 19:54:47 -08:00
parent 0d345980dc
commit 7f5f944c97

View File

@ -198,7 +198,7 @@ long int DBSCAN(Face **ppFaces, long int faceCount, double eps, int minPts) {
if (neighborCount < minPts) {
pFace->clusterType = NOISE;
freeChain(pNeighbors);
break;
continue;
}
//printf("%ld has %ld neighbors.\n", pFace->faceId, neighborCount);