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