uk.ac.essex.ia
Interface EdgeConstants


public interface EdgeConstants

This class contains constants used in Edge Detection. These include constants to distinguish between different algorithms and array representation of the convolution masks to perform these algortihms


Field Summary
static int CUSTOM
           
static int FREICHEN
           
static float[] freichen_h_data
          The horizontal Freichen convolution mask
static float[] freichen_v_data
          The vertical Freichen convolution mask
static int PREWITT
           
static float[] prewitt_h_data
          The horizontal Prewitt convolution mask
static float[] prewitt_v_data
          The vertical Prewitt convolution mask
static int ROBERTS
           
static float[] roberts_h_data
          The horizontal roberts convolution mask
static float[] roberts_v_data
          The vertical roberts convolution mask
static int SOBEL
           
static float[] sobel_h_data
          The horizontal sobel convolution mask
static float[] sobel_v_data
          The vertical sobel convolution mask
 

Field Detail

SOBEL

static final int SOBEL
See Also:
Constant Field Values

PREWITT

static final int PREWITT
See Also:
Constant Field Values

ROBERTS

static final int ROBERTS
See Also:
Constant Field Values

FREICHEN

static final int FREICHEN
See Also:
Constant Field Values

CUSTOM

static final int CUSTOM
See Also:
Constant Field Values

sobel_h_data

static final float[] sobel_h_data
The horizontal sobel convolution mask


sobel_v_data

static final float[] sobel_v_data
The vertical sobel convolution mask


roberts_h_data

static final float[] roberts_h_data
The horizontal roberts convolution mask


roberts_v_data

static final float[] roberts_v_data
The vertical roberts convolution mask


prewitt_h_data

static final float[] prewitt_h_data
The horizontal Prewitt convolution mask


prewitt_v_data

static final float[] prewitt_v_data
The vertical Prewitt convolution mask


freichen_h_data

static final float[] freichen_h_data
The horizontal Freichen convolution mask


freichen_v_data

static final float[] freichen_v_data
The vertical Freichen convolution mask