training a CNN with colors

6 views (last 30 days)
Aisha Al Abri
Aisha Al Abri on 7 Dec 2020
Answered: Srivardhan Gadila on 17 Dec 2020
is it possible to train a neural network with single colored images ? ( blue, green, red) ? would it actually learn features?

Answers (1)

Srivardhan Gadila
Srivardhan Gadila on 17 Dec 2020
By single colored images I'm assuming that you are referring to single channel (red or green or blue) of RGB (Truecolor) Images. In that case, Yes you can try training your network with single channel.
As per my knowledge there would be two ways of doing so (assume RGB image of size m by n by 3):
  1. Passing only one channel and removing the other one in the preprocessing. Doing this way it would be more or less similiar to that of grayscale images as we have only m by n matrix.
  2. Making elements of other two channels zero or 255 (in case of uint8 and 1 in case of double) or some other constant value.
After trying out the above, you can make use of activations to check the features your network has learned. You can also refer to Visualize Activations of a Convolutional Neural Network & Deep Learning Tuning and Visualization.

Tags

Community Treasure Hunt

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

Start Hunting!