% Basic Image Processing and Analysis, 2016.
% script to call the solution function for lab1 / exercise1
close all;
clear all;

input_file_path = './AlfredoBorba_TuscanLandscape.jpg';
output_file_path = './lab1_outdir/AlfredoBorba_TuscanLandscape_grayscale.jpg';

returned_image = lab1_ex1(input_file_path, output_file_path);

figure;
imshow(returned_image);
title('output variable of the function');
