io.github.mianalysis.mia.process.deeplearning.ModelSummary 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.process.deeplearning;
// public class ModelSummary {
// private String name;
// private String dir;
// private String engine;
// private String version;
// public ModelSummary(String name, String dir, String engine, String version) {
// this.name = name;
// this.dir = dir;
// this.engine = engine;
// this.version = version;
// }
// public String getModelName() {
// return name;
// }
// public String getModelDirectory() {
// return dir;
// }
// public String getEngineName() {
// return engine;
// }
// public String getEngineVersion() {
// return version;
// }
// }