% Basic Image Processing and Analysis, 2016.
% script to call the solution function for lab1 / exercise2
close all;
clear all;

input_file_path = './AlfredoBorba_TuscanLandscape.jpg';
output_folder_abspath = 'D:\dokumentumok\matlab_wd\oktatasi\kepelemzes_2016\lab_2016\lab_week1\lab1_outdir\';

[A, B, C] = lab1_ex2(input_file_path, output_folder_abspath);

figure;
subplot(1, 3, 1);
imshow(A);
subplot(1, 3, 2);
imshow(B);
subplot(1, 3, 3);
imshow(C);

