io.github.mianalysis.mia.process.analysis.EuclideanDistanceCalculator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mia-algorithms Show documentation
Show all versions of mia-algorithms Show documentation
ModularImageAnalysis (MIA) is an ImageJ plugin which provides a modular framework for assembling image and object analysis workflows. Detected objects can be transformed, filtered, measured and related. Analysis workflows are batch-enabled by default, allowing easy processing of high-content datasets.
package io.github.mianalysis.mia.process.analysis;
import java.util.TreeMap;
/**
* Created by steph on 15/04/2017.
*/
public class EuclideanDistanceCalculator implements SpatialCalculator {
public TreeMap calculate(double[] x, double[] y, double[] z, int[] f) {
TreeMap dist = new TreeMap<>();
dist.put(f[0],0d);
for (int i=0;i