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 Median3DPlugin 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.median3d(stack); 00017 } 00018 00019 public String getName() { 00020 return "Median 3D"; 00021 } 00022 00023 public String getAbout() { 00024 return "Generates the boolean median of a 3d-stack"; 00025 } 00026 00027 public String getCategory() { 00028 return null; 00029 } 00030 }