[b4b313]: / Image features calculation code / Working / generateImageFeatures.m

Download this file

18 lines (10 with data), 370 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
function generateImageFeatures(images, saveLocation)
%GENERATEIMAGEFEATURES Summary of this function goes here
% calls three functions that calculate all image features
%shape and size features
shapeFeatures(images,saveLocation);
%intensity features
intensityFeatures(images,saveLocation);
%gabor texture features
gab(images,saveLocation);
end