io.github.mianalysis.mia.module.objects.measure.miscellaneous.ParentObjectID 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.
// TODO: Could addRef an optional parameter to select the channel of the input image to use for measurement
package io.github.mianalysis.mia.module.objects.measure.miscellaneous;
import org.scijava.Priority;
import org.scijava.plugin.Plugin;
import io.github.mianalysis.mia.module.Categories;
import io.github.mianalysis.mia.module.Category;
import io.github.mianalysis.mia.module.Module;
import io.github.mianalysis.mia.module.Modules;
import io.github.mianalysis.mia.object.Obj;
import io.github.mianalysis.mia.object.Objs;
import io.github.mianalysis.mia.object.Workspace;
import io.github.mianalysis.mia.object.measurements.ParentIDMeasurement;
import io.github.mianalysis.mia.object.parameters.InputObjectsP;
import io.github.mianalysis.mia.object.parameters.Parameters;
import io.github.mianalysis.mia.object.parameters.ParentObjectsP;
import io.github.mianalysis.mia.object.parameters.SeparatorP;
import io.github.mianalysis.mia.object.refs.ObjMeasurementRef;
import io.github.mianalysis.mia.object.refs.collections.ImageMeasurementRefs;
import io.github.mianalysis.mia.object.refs.collections.MetadataRefs;
import io.github.mianalysis.mia.object.refs.collections.ObjMeasurementRefs;
import io.github.mianalysis.mia.object.refs.collections.ObjMetadataRefs;
import io.github.mianalysis.mia.object.refs.collections.ParentChildRefs;
import io.github.mianalysis.mia.object.refs.collections.PartnerRefs;
import io.github.mianalysis.mia.object.system.Status;
/**
* Created by sc13967 on 05/05/2017.
*/
/**
* Stores the ID number of an associated parent from a specific class. Associated IDs are stored as measurements and are assigned to all objects in the input collection. Unlike normal measurements, this value is evaluated at the time of use, so should always be up to date.
*/
@Plugin(type = Module.class, priority=Priority.LOW, visible=true)
public class ParentObjectID extends Module {
/**
*
*/
public static final String INPUT_SEPARATOR = "Object input";
/**
* For each object in this collection the ID number of an associated parent object (from the collection specified by "Parent object") will be stored as a measurement. This measurement will be associated with each input object. The measurement is evaluated at the time of access (unlike "normal" measurements which have fixed values), so should always be correct.
*/
public static final String INPUT_OBJECTS = "Input objects";
/**
* Associated parent object collection.
*/
public static final String PARENT_OBJECT = "Parent object";
public ParentObjectID(Modules modules) {
super("Parent object ID", modules);
}
public static String getFullName(String parentObjectsName) {
return "PARENT_ID // "+ parentObjectsName;
}
@Override
public Category getCategory() {
return Categories.OBJECTS_MEASURE_MISCELLANEOUS;
}
@Override
public String getVersionNumber() {
return "1.0.0";
}
@Override
public String getDescription() {
return "Stores the ID number of an associated parent from a specific class. Associated IDs are stored as measurements and are assigned to all objects in the input collection. Unlike normal measurements, this value is evaluated at the time of use, so should always be up to date.";
}
@Override
public Status process(Workspace workspace) {
// Getting input objects
String objectName = parameters.getValue(INPUT_OBJECTS,workspace);
String parentObjectsName = parameters.getValue(PARENT_OBJECT,workspace);
Objs objects = workspace.getObjects().get(objectName);
String measurementName = getFullName(parentObjectsName);
if (objects == null)
return Status.PASS;
for (Obj obj : objects.values())
obj.addMeasurement(new ParentIDMeasurement(measurementName, obj, parentObjectsName));
if (showOutput) objects.showMeasurements(this,modules);
return Status.PASS;
}
@Override
protected void initialiseParameters() {
parameters.add(new SeparatorP(INPUT_SEPARATOR, this));
parameters.add(new InputObjectsP(INPUT_OBJECTS, this));
parameters.add(new ParentObjectsP(PARENT_OBJECT, this));
addParameterDescriptions();
}
@Override
public Parameters updateAndGetParameters() {
Workspace workspace = null;
String inputObjectsName = parameters.getValue(INPUT_OBJECTS,workspace);
((ParentObjectsP) parameters.get(PARENT_OBJECT)).setChildObjectsName(inputObjectsName);
return parameters;
}
@Override
public ImageMeasurementRefs updateAndGetImageMeasurementRefs() {
return null;
}
@Override
public ObjMeasurementRefs updateAndGetObjectMeasurementRefs() {
Workspace workspace = null;
ObjMeasurementRefs returnedRefs = new ObjMeasurementRefs();
String inputObjectsName = parameters.getValue(INPUT_OBJECTS,workspace);
String parentObjectsName = parameters.getValue(PARENT_OBJECT,workspace);
String measurementName = getFullName(parentObjectsName);
// We don't want statistics for this measurement
ObjMeasurementRef ref = objectMeasurementRefs.getOrPut(measurementName);
ref.setObjectsName(inputObjectsName);
ref.setDescription("ID number of associated \""+parentObjectsName+"\" parent object.");
ref.setExportMax(false);
ref.setExportMean(false);
ref.setExportMin(false);
ref.setExportStd(false);
ref.setExportSum(false);
returnedRefs.add(ref);
return returnedRefs;
}
@Override
public ObjMetadataRefs updateAndGetObjectMetadataRefs() {
return null;
}
@Override
public MetadataRefs updateAndGetMetadataReferences() {
return null;
}
@Override
public ParentChildRefs updateAndGetParentChildRefs() {
return null;
}
@Override
public PartnerRefs updateAndGetPartnerRefs() {
return null;
}
@Override
public boolean verify() {
return true;
}
void addParameterDescriptions() {
parameters.get(INPUT_OBJECTS).setDescription(
"For each object in this collection the ID number of an associated parent object (from the collection specified by \""
+ PARENT_OBJECT
+ "\") will be stored as a measurement. This measurement will be associated with each input object. The measurement is evaluated at the time of access (unlike \"normal\" measurements which have fixed values), so should always be correct.");
parameters.get(PARENT_OBJECT).setDescription("Associated parent object collection.");
}
}