Find Edges with ImageJ Programmatically

后端 未结 2 1015
傲寒
傲寒 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:22

    OK, I got the solution, the problem was that I didn't connect the ColorProcessor with the image.

    ColorProcessor ip = new ColorProcessor(ImageIO.read(new File("my_image.jpg")));
    ip.findEdges();
    BufferedImage bimg = ip.getBufferedImage();
    

提交回复
热议问题