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