io.github.mianalysis.mia.module.objects.relate.Linkable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mia-modules Show documentation
Show all versions of mia-modules 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.module.objects.relate;
public class Linkable {
final double cost;
final int ID1;
final int ID2;
public Linkable(double cost, int ID1, int ID2) {
this.cost = cost;
this.ID1 = ID1;
this.ID2 = ID2;
}
public double getCost() {
return cost;
}
public int getID1() {
return ID1;
}
public int getID2() {
return ID2;
}
}