Applying Median 3D filter on an image in eclipse (Jython)
Posted by
haider on
Jul 08, 2014; 4:54pm
URL: http://imagej.273.s1.nabble.com/Applying-Median-3D-filter-on-an-image-in-eclipse-Jython-tp5008632.html
Hello
I have just started programming a plugin for ImageJ in eclipse. My programming language of choice is Jython. I have the following code:
from ij import *
get = IJ.openImage("
http://imagej.net/images/clown.jpg");
get.show()
imp = IJ.getImage()
IJ.runPlugIn('plugin.Filters3D.MEDIAN', 'imp')
When I print image pixels statistics before and after, I see no difference. Am I inputting the image improperly? Any help would be appreciated.
Thanks
Haider