MATLAB: How to program for feature extraction from an image

digital image processing

Features which i want to extract are standard deviation and mean deviation.

Best Answer

I=imread('Input image')
Feature1 = mean2(I)
Feature2 = std2(I)
Related Question