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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
package ij.plugin.filter;
import ij.*;
import ij.gui.*;
import ij.process.*;
import ij.measure.*;
import java.awt.*;
/** This plugin implements ImageJ's Fill, Clear, Clear Outside and Draw commands. */
public class Filler implements PlugInFilter, Measurements {
String arg;
Roi roi;
ImagePlus imp;
int sliceCount;
ImageProcessor mask;
boolean isTextRoi;
public int setup(String arg, ImagePlus imp) {
this.arg = arg;
this.imp = imp;
if (imp!=null)
roi = imp.getRoi();
isTextRoi = roi!=null && (roi instanceof TextRoi);
if (isTextRoi && (arg.equals("draw") || arg.equals("fill")) && ((TextRoi)roi).getAngle()!=0.0) {
String s = IJ.isMacOSX()?"command+b":"ctrl+b";
IJ.error("Draw rotated text by pressing "+s+" (Image>Overlay>Add Selection).");
return DONE;
}
IJ.register(Filler.class);
int baseCapabilities = DOES_ALL+ROI_REQUIRED;
if (arg.equals("clear")) {
if (roi!=null && roi.getType()==Roi.POINT) {
IJ.error("Clear", "Area selection required");
return DONE;
}
if (isTextRoi || isLineSelection())
return baseCapabilities;
else
return IJ.setupDialog(imp,baseCapabilities+SUPPORTS_MASKING);
} else if (arg.equals("draw"))
return IJ.setupDialog(imp,baseCapabilities);
else if (arg.equals("label")) {
if (Analyzer.firstParticle<Analyzer.lastParticle)
return baseCapabilities-ROI_REQUIRED;
else
return baseCapabilities;
} else if (arg.equals("outside"))
return IJ.setupDialog(imp,baseCapabilities);
else if (roi!=null && roi.getType()==Roi.POINT && arg.equals("fill")) {
IJ.error("Fill", "Area selection required");
return DONE;
} else
return IJ.setupDialog(imp,baseCapabilities+SUPPORTS_MASKING);
}
public void run(ImageProcessor ip) {
if (arg.equals("clear"))
clear(ip);
else if (isTextRoi && (arg.equals("draw") || arg.equals("fill")))
draw(ip);
else if (arg.equals("fill"))
fill(ip);
else if (arg.equals("draw"))
draw(ip);
else if (arg.equals("label"))
label(ip);
else if (arg.equals("outside"))
clearOutside(ip);
}
boolean isLineSelection() {
return roi!=null && roi.isLine();
}
boolean isStraightLine() {
return roi!=null && roi.getType()==Roi.LINE;
}
public void clear(ImageProcessor ip) {
ip.setColor(Toolbar.getBackgroundColor());
if (isLineSelection()) {
if (isStraightLine() && roi.getStrokeWidth()>1)
ip.fillPolygon(roi.getPolygon());
else
roi.drawPixels();
} else if (roi!=null && roi instanceof TextRoi)
((TextRoi)roi).clear(ip);
else
ip.fill(); // fill with background color
ip.setColor(Toolbar.getForegroundColor());
}
/**
* @deprecated
* replaced by ImageProcessor.fill(Roi)
*/
public void fill(ImageProcessor ip) {
ip.setColor(Toolbar.getForegroundColor());
if (isLineSelection()) {
if (isStraightLine() && roi.getStrokeWidth()>1 && !(roi instanceof Arrow))
ip.fillPolygon(roi.getPolygon());
else
roi.drawPixels(ip);
} else
ip.fill(); // fill with foreground color
}
/**
* @deprecated
* replaced by ImageProcessor.draw(Roi)
*/
public void draw(ImageProcessor ip) {
ip.setColor(Toolbar.getForegroundColor());
roi.drawPixels(ip);
if (IJ.altKeyDown())
drawLabel(ip);
}
public void label(ImageProcessor ip) {
if (!IJ.isMacro()) {
IJ.error("Label", "To label a selection, enable \"Add to overlay\" in Analyze>\nSet Measurements and press 'm' (Analyze>Measure).");
return;
}
if (Analyzer.getCounter()==0) {
IJ.error("Label", "Measurement counter is zero");
return;
}
if (Analyzer.firstParticle<Analyzer.lastParticle)
drawParticleLabels(ip);
else {
ip.setColor(Toolbar.getForegroundColor());
ImageCanvas ic = imp.getCanvas();
if (ic!=null) {
double mag = ic.getMagnification();
if (mag<1.0) {
int lineWidth = 1;
lineWidth = (int)(lineWidth/mag);
ip.setLineWidth(lineWidth);
}
}
roi.drawPixels(ip);
ip.setLineWidth(1);
drawLabel(ip);
}
}
void drawParticleLabels(ImageProcessor ip) {
ResultsTable rt = ResultsTable.getResultsTable();
int count = rt.getCounter();
int first = Analyzer.firstParticle;
int last = Analyzer.lastParticle;
if (count==0 || first>=count || last>=count)
return;
if (!rt.columnExists(ResultsTable.X_CENTROID)) {
IJ.error("Label", "\"Centroids\" required to label particles");
return;
}
for (int i=first; i<=last; i++) {
int x = (int)rt.getValueAsDouble(ResultsTable.X_CENTROID, i);
int y = (int)rt.getValueAsDouble(ResultsTable.Y_CENTROID, i);
drawLabel(imp, ip, i+1, new Rectangle(x,y,0,0));
}
}
void drawLabel(ImageProcessor ip) {
int count = Analyzer.getCounter();
if (count>0 && roi!=null)
drawLabel(imp, ip, count, roi.getBounds());
}
public void drawLabel(ImagePlus imp, ImageProcessor ip, int count, Rectangle r) {
Color foreground = Toolbar.getForegroundColor();
Color background = Toolbar.getBackgroundColor();
if (foreground.equals(background)) {
foreground = Color.black;
background = Color.white;
}
int size = 9;
ImageCanvas ic = imp.getCanvas();
if (ic!=null) {
double mag = ic.getMagnification();
if (mag<1.0)
size /= mag;
}
if (size==9 && r.width>50 && r.height>50)
size = 12;
ip.setFont(new Font("SansSerif", Font.PLAIN, size));
String label = "" + count;
int w = ip.getStringWidth(label);
int x = r.x + r.width/2 - w/2;
int y = r.y + r.height/2 + Math.max(size/2,6);
FontMetrics metrics = ip.getFontMetrics();
int h = metrics.getHeight();
ip.setColor(background);
ip.setRoi(x-1, y-h+2, w+1, h-3);
ip.fill();
ip.resetRoi();
ip.setColor(foreground);
ip.drawString(label, x, y);
}
/**
* @deprecated
* replaced by ImageProcessor.fillOutside(Roi)
*/
public synchronized void clearOutside(ImageProcessor ip) {
if (isLineSelection()) {
IJ.error("\"Clear Outside\" does not work with line selections.");
return;
}
sliceCount++;
Rectangle r = ip.getRoi();
if (mask==null)
makeMask(ip, r);
ip.setColor(Toolbar.getBackgroundColor());
int stackSize = imp.getStackSize();
if (stackSize>1)
ip.snapshot();
ip.fill();
ip.reset(mask);
int width = ip.getWidth();
int height = ip.getHeight();
ip.setRoi(0, 0, r.x, height);
ip.fill();
ip.setRoi(r.x, 0, r.width, r.y);
ip.fill();
ip.setRoi(r.x, r.y+r.height, r.width, height-(r.y+r.height));
ip.fill();
ip.setRoi(r.x+r.width, 0, width-(r.x+r.width), height);
ip.fill();
ip.setRoi(r); // restore original ROI
if (sliceCount==stackSize) {
ip.setColor(Toolbar.getForegroundColor());
Roi roi = imp.getRoi();
imp.deleteRoi();
imp.updateAndDraw();
imp.setRoi(roi);
}
}
public void makeMask(ImageProcessor ip, Rectangle r) {
mask = ip.getMask();
if (mask==null) {
mask = new ByteProcessor(r.width, r.height);
mask.invert();
} else {
// duplicate mask (needed because getMask caches masks)
mask = mask.duplicate();
}
mask.invert();
}
}
|