Find Edges with ImageJ Programmatically

后端 未结 2 980
傲寒
傲寒 2021-01-22 18:28

I want to use find edges option of the ImageJ, have the edges-found array and save it to another file programatically.

ImagePlus ip1 = IJ.openIm         


        
2条回答
  •  执念已碎
    2021-01-22 19:17

    ImageProcessor is an abstract class, that lets the derived classes provide the appropriate implementation. You need to declare ip as type ColorProcessor:

    ColorProcessor ip = new ColorProcessor(ip1.getWidth(), ip1.getHeight()); 
    ip.findEdges();
    

提交回复
热议问题