Class RobertsCrossEdgeDetector


  • public class RobertsCrossEdgeDetector
    extends GaussianEdgeDetector
    This class provides a configurable implementation of the Canny edge detection algorithm. This classic algorithm has a number of shortcomings, but remains an effective tool in many scenarios.
    Author:
    Jason Altschuler, modified by Azim Ahmadzadeh and Dustin Kempton of Data Mining Lab, Georgia State University
    • Constructor Detail

      • RobertsCrossEdgeDetector

        public RobertsCrossEdgeDetector​(String filePath)
        All work is done in the constructor.
        Parameters:
        filePath - path to image
      • RobertsCrossEdgeDetector

        public RobertsCrossEdgeDetector​(double[][] image)
        All work is done in the constructor.

        Uses L2 norm by default.

        Parameters:
        image -
      • RobertsCrossEdgeDetector

        public RobertsCrossEdgeDetector​(double[][] image,
                                        boolean L1norm)
        All work is done in the constructor.

        Gives option to use L1 or L2 norm.