//*****************************************************************************
//
// Program:     Homework 4 -- Programming Assignment 1 MARS images
//
// Author:      Travis Dillon
// Email:       tdillon@ace.cs.ohiou.edu
//
// Description: This program reads in an existing image.  Then filters the
//              image and creates a new filtered image.
//
// Date:        February 22, 2004
//
//*****************************************************************************


#include "prog1.h"

int main(int argc, char **argv)
{
   Picture ralph(argv);  //O(1)
   ralph.read_info();  //O(h)           h = height of picture
   ralph.read_data();  //O(h * w)       w = height of picture
   ralph.filter();  //O(h * w * n^2)    n = neighborhood
   ralph.output_filtered_picture();  //O(h * w)

   return EXIT_SUCCESS;
}