Class ImageConvolution


  • public class ImageConvolution
    extends Object
    Author:
    Jason Altschuler, modified by Azim Ahmadzadeh and Dustin Kempton of Data Mining Lab, Georgia State University
    • Constructor Detail

      • ImageConvolution

        public ImageConvolution​(double[][] image,
                                double[][] kernel)
        Constructor
    • Method Detail

      • getConvolvedImage

        public double[][] getConvolvedImage()
        Returns:
        convolvedImage
      • getImage

        public double[][] getImage()
        Returns:
        original image
      • getKernel

        public double[][] getKernel()
        Returns:
        convolution kernel
      • getM

        public int getM()
        Returns:
        # of rows in original image
      • getN

        public int getN()
        Returns:
        # of columns in original image
      • getm

        public int getm()
        Returns:
        # of rows in convolution kernel
      • getn

        public int getn()
        Returns:
        # of columns in convolution kernel