Fix output info
Signed-off-by: James Ketrenos <james_git@ketrenos.com>
This commit is contained in:
parent
0d01732598
commit
50ddb96e74
@ -54,7 +54,7 @@ def DBSCAN(points, eps = MAX_DISTANCE, minPts = MIN_PTS, verbose = True):
|
|||||||
|
|
||||||
sub_perc = -1
|
sub_perc = -1
|
||||||
sub_total = len(S)
|
sub_total = len(S)
|
||||||
T = S
|
T = S.copy()
|
||||||
for j, Q in enumerate(S): # Process every seed point
|
for j, Q in enumerate(S): # Process every seed point
|
||||||
if verbose == True:
|
if verbose == True:
|
||||||
sub_new_perc = int(100 * (j+1) / sub_total)
|
sub_new_perc = int(100 * (j+1) / sub_total)
|
||||||
@ -73,7 +73,7 @@ def DBSCAN(points, eps = MAX_DISTANCE, minPts = MIN_PTS, verbose = True):
|
|||||||
N = RangeQuery(points, Q, eps) # Find neighbors
|
N = RangeQuery(points, Q, eps) # Find neighbors
|
||||||
if len(N) >= minPts: # Density check (if Q is a core point)
|
if len(N) >= minPts: # Density check (if Q is a core point)
|
||||||
T = Union(T, N) # Add new neighbors to seed set
|
T = Union(T, N) # Add new neighbors to seed set
|
||||||
|
S = T
|
||||||
return clusters
|
return clusters
|
||||||
|
|
||||||
def RangeQuery(points, Q, eps):
|
def RangeQuery(points, Q, eps):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user