Dilate3DPlugin.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 Dilate3DPlugin implements Plugin {
00009         ThebaGUI control;
00010 
00011         public void setup(ThebaGUI f) {
00012                 this.control = f;
00013         }
00014 
00015         public void process(Stack stack) {
00016                 ImageFunctions.dilate3d(stack);
00017         }
00018 
00019         public String getName() {
00020                 return "Dilate 3D";
00021         }
00022 
00023         public String getAbout() {
00024                 return "Dilates the volume using a simple 6-way-cross as the \n structureelement.";
00025         }
00026 
00027         public String getCategory() {
00028                 return "Morphology";
00029         }
00030 }

Generated on Fri Nov 13 08:57:07 2009 for Theba by  doxygen 1.6.1