How to use image input with Neural Network?

1 view (last 30 days)
Create a neural network with images as inputs

Answers (1)

Walter Roberson
Walter Roberson on 8 Jun 2015
image_as_vector = YourImage(:);
  2 Comments
SUHAS SATONKAR
SUHAS SATONKAR on 8 Jun 2015
Edited: SUHAS SATONKAR on 8 Jun 2015
YourImage(:) is user defined function ?
Walter Roberson
Walter Roberson on 8 Jun 2015
YourImage is the name of the variable that contains your image. For example,
Finzoop = imread('Yizap.tif');
image_as_vector = Finzoop(:);

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!