MATLAB: Extract feature

extractfeature

hi,I have extracted pixels intesity for example 20×20 arrays pixels. how to use the extracted pixels so that it can be used as a input in neural network

Best Answer

Convert input images to column vectors by using the colon operator.
columnvector = image(:);
Hope this helps.
Greg
Related Question