MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / getMask

Method getMask

ij/src/main/java/ij/gui/Roi.java:1765–1770  ·  view source on GitHub ↗

Always returns null for rectangular Roi's

()

Source from the content-addressed store, hash-verified

1763
1764 /** Always returns null for rectangular Roi's */
1765 public ImageProcessor getMask() {
1766 if (cornerDiameter>0)
1767 return (new ShapeRoi(new RoundRectangle2D.Float(x, y, width, height, cornerDiameter, cornerDiameter))).getMask();
1768 else
1769 return null;
1770 }
1771
1772 public void startPaste(ImagePlus clipboard) {
1773 IJ.showStatus("Pasting...");

Callers 14

pasteMethod · 0.95
makeBandMethod · 0.95
sampleMethod · 0.95
fillMethod · 0.95
getMaskMethod · 0.95
getContainedPointsMethod · 0.95
RoiPointsIteratorMaskMethod · 0.95
setSurfacePlotImageMethod · 0.95
showHistogramMethod · 0.45
drawMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected