Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hydra-image-processor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenSource
hydra-image-processor
Commits
9a5c0ae9
Commit
9a5c0ae9
authored
9 years ago
by
sundar
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/MATLAB/MasterFunctionTester.m
+34
-0
34 additions, 0 deletions
src/MATLAB/MasterFunctionTester.m
with
34 additions
and
0 deletions
src/MATLAB/MasterFunctionTester.m
0 → 100644
+
34
−
0
View file @
9a5c0ae9
%% 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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment