View Javadoc
1   package com.github.celldynamics.quimp.plugin;
2   
3   import ij.process.ImageProcessor;
4   
5   /**
6    * Allow to attach image to filter.
7    * 
8    * @author p.baniukiewicz
9    *
10   */
11  public interface IQuimpPluginAttachImage {
12  
13    /**
14     * Attach image to filter.
15     * 
16     * @param img image to attach.
17     */
18    public void attachImage(ImageProcessor img);
19  
20  }