From 7f5f944c971c3f9c0042cc3c0a4629f3c202af71 Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Fri, 10 Jan 2020 19:54:47 -0800 Subject: [PATCH] Reducing threshold: Signed-off-by: James Ketrenos --- scanner/scanner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scanner/scanner.c b/scanner/scanner.c index e9397e1..a2f5c89 100644 --- a/scanner/scanner.c +++ b/scanner/scanner.c @@ -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);