Borrar filtros
Borrar filtros

I want to use vgg16 for grayscale images with one channel

25 visualizaciones (últimos 30 días)
Hi Guyz.......i need to use CNN VGG16 for training my image samples but my images are gray scale and the input layer of VGG16 alexnet and VGG19 has 3 channels what can i do to resolve this issue. Please let me know some one.
Thanks,
  1 comentario
abhi abhi
abhi abhi el 28 de Dic. de 2020
vgg16 and vgg19 using deep learning how can i design this architecture please help me

Iniciar sesión para comentar.

Respuesta aceptada

Darshan Ramakant Bhat
Darshan Ramakant Bhat el 17 de Abr. de 2017
Since VGG16 is a pretrained model its input configuration cannot be changed.You can copy the first Chanel values to other two channel and create a 3 channel image out of your gray scale image.
rgbImage = cat(3, grayImage, grayImage, grayImage);
Give this image as the input to VGG16. I hope this will workout for you.
  3 comentarios
Image Analyst
Image Analyst el 19 de Nov. de 2017
It simply allocates more memory for rgbImage. It should be extremely fast and the computation time should not really be a concern.
Modar Alfadly
Modar Alfadly el 18 de Mayo de 2018
You can do the same as suggested more efficiently by summing up the channels of the kernels of the first convolutional layer.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Data Workflows en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by