I would like to filter a image using ImageJ API. The ImageJ libary is correctly connected to my project.
Now I want to process the image with an average filter from the API. How does that work?
public Image filterMyImage(ImagePlus imagePlus)
{
// IMAGEPLUS FILTERING PROCESS HERE
return image;
}