Erode3DPlugin.java
Go to the documentation of this file.00001 package theba.plugins;
00002
00003 import theba.core.ImageFunctions;
00004 import theba.core.Plugin;
00005 import theba.core.Stack;
00006 import theba.core.gui.ThebaGUI;
00007
00008 public class Erode3DPlugin implements Plugin {
00009 ThebaGUI control;
00010
00011 public void setup(ThebaGUI f) {
00012 this.control = f;
00013 }
00014
00015 public String getCategory() {
00016 return "Morphology";
00017 }
00018
00019 public void process(Stack stack) {
00020 ImageFunctions.erode3d(stack);
00021 }
00022
00023 public String getName() {
00024 return "Erode 3D";
00025 }
00026
00027 public String getAbout() {
00028 return "Erodes the volume using a simple 6-way-cross as the \n structureelement.";
00029 }
00030 }