Skip to content
Snippets Groups Projects
Commit 9a5c0ae9 authored by sundar's avatar sundar
Browse files

Master Function Tester that runs all the scripts for different operations.

parent 951e510c
No related branches found
No related tags found
No related merge requests found
%% MASTER FILE TESTER
% Unit tester for comparing and evaluation of performance between Matlab's and CUDA image processing library
% Sundar Ram Swaminathan
clear all;
close all;
%% Loading Image
[im, imagedata] = tiffReader();
img1=im(:,:,:,1);
img2=im(:,:,:,2);
% Performance evaluation
run Allstats_AddConstant.m; % 385.925389 sec
run Allstats_AddImageWith.m; % 1403.93 sec
run Allstats_ApplyPolyTransformation.m; % 405.34 sec
run Allstats_Gaussianfilter.m; % 5365.18 sec
run Allstats_ImagePow.m; %
run Allstats_MaxFilterEllipsoid.m; % 9332.89 sec
run Allstats_MaxFilterKernel.m; % 4317.25 sec
run Allstats_MinFilterEllipsoid.m; % 8293.15 sec
run Allstats_MinFilterKernel.m; % 4317.25 sec
run Allstats_MinMax.m; %
run Allstats_MultiplyImage.m; % 314.73 sec
run Allstats_MultiplyTwoImages.m; % 665.75 sec
run Allstats_Histogram.m; % 275.96 sec
run Allstats_NormalizedHistogram.m; %
run Allstats_OtsuThresholdValue.m; % 278.85 sec
run Allstats_OtsuThresholdFilter.m; %
run Allstats_ThresholdFilter.m; %
run Allstats_SumArray.m; % 45.99 sec
run Allstats_MeanFilter.m; %
run Allstats_MedianFilter.m; %
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment