How to apply CNN code on an input image with 3channels

2 visualizaciones (últimos 30 días)
Jongkyu Lee
Jongkyu Lee el 24 de Feb. de 2021
Respondida: Mahesh Taparia el 27 de Feb. de 2021
I am trying to apply regression through CNN on 3ch of image data composed of RGB.
So, referring to https://kr.mathworks.com/help/deeplearning/ug/train-a-convolutional-neural-network-for-regression.html, I entered the following to compose the training data.
[XTrain,YTrain] = voltage_img;
The variable voltage_img is (434*343*3*310), which is 4-D. When I run the above code, I get an error saying that there are too many output arguments.
How can I fix it?

Respuestas (1)

Mahesh Taparia
Mahesh Taparia el 27 de Feb. de 2021
Hi
Looking at the dimension of voltage_img (which you mentioned), it seems it only contains the training input which consists of 310 images of size 434X343X3. There is no information about the ground truth. So effectively it is XTrain and it does not contains YTrain. So, assign the training input to XTrain and labels to YTrain and then follow the example. Hope it will work!

Etiquetas

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by