All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.mianalysis.mia.module.objects.relate.Linkable Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.6.12
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy