Skip navigation links

Package inra.ijpb.algo

Several classes for managing progress of algorithms.

See: Description

Package inra.ijpb.algo Description

Several classes for managing progress of algorithms. Sample code usage:

        // create ImageJ instance and open an image
        new ImageJ();
        ImagePlus imagePlus = IJ.openImage("http://imagej.nih.gov/ij/images/NileBend.jpg");
        imagePlus.show("Input");
        
        // Create an operator (here a structuring element operation)
        Strel strel = SquareStrel.fromDiameter(21);
        
        // uses default listener. This will display progress in ImageJ progress bar
        // and display status in ImageJ status bar
        DefaultAlgoListener.monitor(strel);
        
        // run the operator on input image
        ImageProcessor image = imagePlus.getProcessor();
        ImageProcessor result = Morphology.dilation(image, strel);
        ImagePlus resultPlus = new ImagePlus("Result", result);
        resultPlus.show("Result");
 
Skip navigation links

Copyright © 2014–2023 INRA-IJPB Modeling and Digital Imaging lab. All rights reserved.