File: Info.java

package info (click to toggle)
imagej 1.51i%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,244 kB
  • ctags: 13,220
  • sloc: java: 113,144; sh: 285; xml: 50; makefile: 8
file content (26 lines) | stat: -rw-r--r-- 518 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package ij.plugin.filter;
import ij.ImagePlus;
import ij.process.ImageProcessor;
import ij.plugin.ImageInfo;

/**
* @deprecated
* replaced by ij.plugin.ImageInfo
*/
public class Info implements PlugInFilter {
    private ImagePlus imp;

	public int setup(String arg, ImagePlus imp) {
		this.imp = imp;
		return DOES_ALL+NO_CHANGES;
	}

	public void run(ImageProcessor ip) {
	}
	
	public String getImageInfo(ImagePlus imp, ImageProcessor ip) {
		ImageInfo info = new ImageInfo();
		return info.getImageInfo(imp);
	}

}