io.github.mianalysis.mia.moduledependencies.ApplyDeepImageJModelDependency Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mia-deepimagej Show documentation
Show all versions of mia-deepimagej 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 ApplyDeepImageJModelDependency extends Dependency {
@Override
public String getModuleName() {
return "ApplyDeepImageJModel";
}
@Override
public String getClassName() {
return "deepimagej.DeepImageJ";
}
@Override
public String getMessage() {
return "MIA currently only supports DeepImageJ up to version 2.1.16. Compatibility with DeepImageJ version 3 and above will be added soon. DeepImageJ 2.1.16 and its dependencies can be downloaded from https://github.com/deepimagej/deepimagej-plugin/releases/tag/2.1.16.";
}
@Override
public String getVersionThreshold() {
return "2.1.16";
}
@Override
public Relationship getRelationship() {
return Relationship.LESS_THAN_OR_EQUAL_TO;
}
}