ECE462 Project1 created by Ed Dudek and Nik Tuzov (http://www.stat.purdue.edu/~ntuzov/).

HOW TO RUN:	

- Under Netbeans, run the main file MainJFrame.java
         OR
- In command-line mode, try

  java -Xms256m -Xmx512m -jar "/path/to/project1/dist/project1.jar"
  
  the first two options specify the initial and the maximal heap size.

IMPLEMENTED FEATURES:

File Menu

  Open - opens the specified .rgb file
  Save - save the "edged" image as "initial_name + e.rgb" in the same directory
  Exit - to exit the application

Process Menu

  Edge - create and display the "edged" image

  Simple Analysis - similarity ranking based on a "simple" algorithm.
                    Shows the current image and the three most similar ones
                    from the current directory, with similarity ranks from
                    1 to 4.

  Intelligent Analysis - similarity ranking based on an "intelligent" algorithm.                         
                          For instance, for sample1.rgb from the supplied directory
                         "img" of sample files, the "simple" and "intelligent" results 
                          are different - try to click back and forth to see the difference.

  Original - brings up the original image after "edging" is done.

Help Menu
     About - an elementary help window.

