io.github.mianalysis.mia.moduledependencies.StarDistDetectionCSBDeepDependency Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mia-stardist Show documentation
Show all versions of mia-stardist 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.moduledependencies;
import org.scijava.Priority;
import org.scijava.plugin.Plugin;
@Plugin(type = Dependency.class, priority = Priority.LOW, visible = true)
public class StarDistDetectionCSBDeepDependency extends Dependency {
@Override
public String getModuleName() {
return "StarDistDetection";
}
@Override
public String getClassName() {
return "de.csbdresden.csbdeep.commands.GenericNetwork";
}
@Override
public String getVersionThreshold() {
return "0.0.0";
}
@Override
public Relationship getRelationship() {
return Relationship.GREATER_THAN_OR_EQUAL_TO;
}
@Override
public String getMessage() {
return "Please enable CSBDeep update site (see https://imagej.net/plugins/stardist for more information)";
}
}