How to implement HDBSCAN clustering in java android
I want to implement HDBscan algorithm to the java android app. I am porting C# to java. In C# they were done using a library named Hdbscansharp. I tried with ELKI in java but I couldn't succeed. the original C# code is
double avgTgtSpd = (tgt1.speed + tgt2.speed) / 2;
filteredHits.Add(new FilteredHit(avgTgtDist, avgTgtSpd, currTgtDirection));
aggregateSpeed += avgTgtSpd;
// HDBSCAN Clustering
double[][] twoDfilteredHits = filteredHits.Select(hit => new double[] { hit.pos...