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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
|
package ij.gui;
import java.awt.*;
import java.awt.image.*;
import java.awt.event.*;
import ij.*;
import ij.plugin.frame.Recorder;
import ij.process.FloatPolygon;
import ij.measure.Calibration;
/** This class implements the ellipse selection tool. */
public class EllipseRoi extends PolygonRoi {
private static final int vertices = 72;
private static double defaultRatio = 0.6;
private double xstart, ystart;
private double aspectRatio = defaultRatio;
private int[] handle = {0, vertices/4, vertices/2, vertices/2+vertices/4};
public EllipseRoi(double x1, double y1, double x2, double y2, double aspectRatio) {
super(new float[vertices], new float[vertices], vertices, FREEROI);
if (aspectRatio<0.0) aspectRatio = 0.0;
if (aspectRatio>1.0) aspectRatio = 1.0;
this.aspectRatio = aspectRatio;
makeEllipse(x1, y1, x2, y2);
state = NORMAL;
bounds = null;
}
public EllipseRoi(int sx, int sy, ImagePlus imp) {
super(sx, sy, imp);
type = FREEROI;
xstart = offScreenXD(sx);
ystart = offScreenYD(sy);
setDrawOffset(false);
bounds = null;
}
public void draw(Graphics g) {
super.draw(g);
if (!overlay) {
for (int i=0; i<handle.length; i++)
drawHandle(g, xp2[handle[i]], yp2[handle[i]]);
}
}
protected void grow(int sx, int sy) {
double x1 = xstart;
double y1 = ystart;
double x2 = offScreenXD(sx);
double y2 = offScreenYD(sy);
makeEllipse(x1, y1, x2, y2);
showStatus();
imp.draw();
}
void makeEllipse(double x1, double y1, double x2, double y2) {
double centerX = (x1 + x2)/2.0;
double centerY = (y1 + y2)/2.0;
double dx = x2 - x1;
double dy = y2 - y1;
double major = Math.sqrt(dx*dx + dy*dy);
double minor = major*aspectRatio;
double phiB = Math.atan2(dy, dx);
double alpha = phiB*180.0/Math.PI;
nPoints = 0;
for (int i=0; i<vertices; i++) {
double degrees = i*360.0/vertices;
double beta1 = degrees/180.0*Math.PI;
dx = Math.cos(beta1)*major/2.0;
dy = Math.sin(beta1)*minor/2.0;
double beta2 = Math.atan2(dy, dx);
double rad = Math.sqrt(dx*dx + dy*dy);
double beta3 = beta2+ alpha/180.0*Math.PI;
double dx2 = Math.cos(beta3)*rad;
double dy2 = Math.sin(beta3)*rad;
xpf[nPoints] = (float)(centerX+dx2);
ypf[nPoints] = (float)(centerY+dy2);
nPoints++;
}
makePolygonRelative();
cachedMask = null;
}
public void showStatus() {
double[] p = getParams();
double dx = p[2] - p[0];
double dy = p[3] - p[1];
double major = Math.sqrt(dx*dx+dy*dy);
double minor = major*p[4];
double angle = getFloatAngle(p[0], p[1], p[2], p[3]);
if (imp!=null && !IJ.altKeyDown()) {
Calibration cal = imp.getCalibration();
if (cal.scaled()) {
dx *= cal.pixelWidth;
dy *= cal.pixelHeight;
major = Math.sqrt(dx*dx+dy*dy);
minor = major*p[4];
}
}
IJ.showStatus("major=" + IJ.d2s(major)+", minor=" + IJ.d2s(minor)+", angle=" + IJ.d2s(angle));
}
public void nudgeCorner(int key) {
if (ic==null) return;
double x1 = xpf[handle[2]]+x;
double y1 = ypf[handle[2]]+y;
double x2 = xpf[handle[0]]+x;
double y2 = ypf[handle[0]]+y;
double inc = 1.0/ic.getMagnification();
switch(key) {
case KeyEvent.VK_UP: y2-=inc; break;
case KeyEvent.VK_DOWN: y2+=inc; break;
case KeyEvent.VK_LEFT: x2-=inc; break;
case KeyEvent.VK_RIGHT: x2+=inc; break;
}
makeEllipse(x1, y1, x2, y2);
imp.draw();
notifyListeners(RoiListener.MOVED);
showStatus();
}
void makePolygonRelative() {
FloatPolygon poly = new FloatPolygon(xpf, ypf, nPoints);
Rectangle r = poly.getBounds();
x = r.x;
y = r.y;
width = r.width;
height = r.height;
for (int i=0; i<nPoints; i++) {
xpf[i] = xpf[i]-x;
ypf[i] = ypf[i]-y;
}
}
protected void handleMouseUp(int screenX, int screenY) {
if (state==CONSTRUCTING) {
if (Recorder.record) {
double x1 = xpf[handle[2]]+x;
double y1 = ypf[handle[2]]+y;
double x2 = xpf[handle[0]]+x;
double y2 = ypf[handle[0]]+y;
if (Recorder.scriptMode())
Recorder.recordCall("imp.setRoi(new EllipseRoi("+x1+","+y1+","+x2+","+y2+","+IJ.d2s(aspectRatio,2)+"));");
else
Recorder.record("makeEllipse", (int)x1, (int)y1, (int)x2, (int)y2, aspectRatio);
}
}
state = NORMAL;
modifyRoi();
}
protected void moveHandle(int sx, int sy) {
double ox = offScreenXD(sx);
double oy = offScreenYD(sy);
double x1 = xpf[handle[2]]+x;
double y1 = ypf[handle[2]]+y;
double x2 = xpf[handle[0]]+x;
double y2 = ypf[handle[0]]+y;
switch(activeHandle) {
case 0:
x2 = ox;
y2 = oy;
break;
case 1:
double dx = (xpf[handle[3]]+x) - ox;
double dy = (ypf[handle[3]]+y) - oy;
updateRatio(Math.sqrt(dx*dx+dy*dy), x1, y1, x2, y2);
break;
case 2:
x1 = ox;
y1 = oy;
break;
case 3:
dx = (xpf[handle[1]]+x) - ox;
dy = (ypf[handle[1]]+y) - oy;
updateRatio(Math.sqrt(dx*dx+dy*dy), x1, y1, x2, y2);
break;
}
makeEllipse(x1, y1, x2, y2);
showStatus();
imp.draw();
}
void updateRatio(double minor, double x1, double y1, double x2, double y2) {
double dx = x2 - x1;
double dy = y2 - y1;
double major = Math.sqrt(dx*dx+dy*dy);
aspectRatio = minor/major;
if (aspectRatio>1.0) aspectRatio = 1.0;
defaultRatio = aspectRatio;
}
public int isHandle(int sx, int sy) {
int size = getHandleSize()+5;
int halfSize = size/2;
int index = -1;
for (int i=0; i<handle.length; i++) {
int sx2 = xp2[handle[i]]-halfSize, sy2=yp2[handle[i]]-halfSize;
if (sx>=sx2 && sx<=sx2+size && sy>=sy2 && sy<=sy2+size) {
index = i;
break;
}
}
return index;
}
/** Returns the perimeter of this ellipse. */
public double getLength() {
double length = 0.0;
double dx, dy;
double w2=1.0, h2=1.0;
if (imp!=null) {
Calibration cal = imp.getCalibration();
w2 = cal.pixelWidth*cal.pixelWidth;
h2 = cal.pixelHeight*cal.pixelHeight;
}
for (int i=0; i<(nPoints-1); i++) {
dx = xpf[i+1]-xpf[i];
dy = ypf[i+1]-ypf[i];
length += Math.sqrt(dx*dx*w2+dy*dy*h2);
}
dx = xpf[0]-xpf[nPoints-1];
dy = ypf[0]-ypf[nPoints-1];
length += Math.sqrt(dx*dx*w2+dy*dy*h2);
return length;
}
/** Returns x1, y1, x2, y2 and aspectRatio as a 5 element array. */
public double[] getParams() {
double[] params = new double[5];
params[0] = xpf[handle[2]]+x;
params[1] = ypf[handle[2]]+y;
params[2] = xpf[handle[0]]+x;
params[3] = ypf[handle[0]]+y;
params[4] = aspectRatio;
return params;
}
public double[] getFeretValues() {
double a[] = super.getFeretValues();
double pw=1.0, ph=1.0;
if (imp!=null) {
Calibration cal = imp.getCalibration();
pw = cal.pixelWidth;
ph = cal.pixelHeight;
}
if (pw != ph) //the following calculation holds only for pixel aspect ratio == 1 (otherwise different axes in distorted ellipse)
return a;
double[] p = getParams();
double dx = p[2] - p[0]; //this is always major axis; aspect ratio p[4] is limited to <= 1
double dy = p[3] - p[1];
double major = Math.sqrt(dx*dx + dy*dy);
double minor = major*p[4];
a[0] = major*pw; //Feret from convex hull should be accurate anyhow
a[2] = minor*pw; //here our own calculation is better
System.arraycopy(p, 0, a, 8, 4); //MaxFeret endpoints
double xCenter = 0.5*(p[2] + p[0]);
double yCenter = 0.5*(p[3] + p[1]);
double semiMinorX = dy * 0.5 * p[4];
double semiMinorY = dx * (-0.5) * p[4];
a[12] = xCenter + semiMinorX; a[14] = xCenter - semiMinorX;
a[13] = yCenter + semiMinorY; a[15] = yCenter - semiMinorY;
return a;
}
/** Always returns true. */
public boolean subPixelResolution() {
return true;
}
}
|