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

Method run

ij/src/main/java/ij/plugin/filter/RoiWriter.java:24–33  ·  view source on GitHub ↗
(ImageProcessor ip)

Source from the content-addressed store, hash-verified

22 }
23
24 public void run(ImageProcessor ip) {
25 try {
26 saveRoi(imp);
27 } catch (IOException e) {
28 String msg = e.getMessage();
29 if (msg==null || msg.equals(""))
30 msg = ""+e;
31 IJ.error("ROI Writer", msg);
32 }
33 }
34
35 public void saveRoi(ImagePlus imp) throws IOException{
36 Roi roi = imp.getRoi();

Callers

nothing calls this directly

Calls 4

saveRoiMethod · 0.95
errorMethod · 0.95
getMessageMethod · 0.45
equalsMethod · 0.45

Tested by

no test coverage detected