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

io.github.mianalysis.mia.lostandfound.objects.process.GetObjectLocalRegionLostFound Maven / Gradle / Ivy

package io.github.mianalysis.mia.lostandfound.objects.process;

import java.util.HashMap;

import org.scijava.Priority;
import org.scijava.plugin.Plugin;

import io.github.mianalysis.mia.module.lostandfound.LostAndFoundItem;
import io.github.mianalysis.mia.module.objects.process.GetLocalObjectRegion;

@Plugin(type = LostAndFoundItem.class, priority = Priority.LOW, visible = true)
public class GetObjectLocalRegionLostFound extends LostAndFoundItem {

    @Override
    public String getModuleName() {
        return new GetLocalObjectRegion(null).getClass().getSimpleName();
    }

    @Override
    public String[] getPreviousModuleNames() {
        return new String[]{""};
    }

    @Override
    public HashMap getPreviousParameterNames() {
        HashMap parameterNames = new HashMap();
        parameterNames.put("Local radius", GetLocalObjectRegion.FIXED_VALUE_FOR_RADIUS);
        parameterNames.put("Fixed value", GetLocalObjectRegion.FIXED_VALUE_FOR_RADIUS);
        parameterNames.put("Measurement name", GetLocalObjectRegion.RADIUS_MEASUREMENT);
        parameterNames.put("Parent object", GetLocalObjectRegion.PARENT_OBJECT_FOR_RADIUS);
        
        return parameterNames;

    }

    @Override
    public HashMap> getPreviousParameterValues() {
        return new HashMap>();
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy