I am working lung CT images and I did a classification for these images using build from scratch model and the results are very good, now for a comparison purpose I want to do a transfer learning using one of the novel models like vgg, resnet, or alexnet, but the problem is these networks are trained on 3 channel images and CT scan images are only 1 channel, there is solution that say to repeat each image array 3 times to make it 3 channel.
my questions are:
1- Is this really the only solution for that?
2- Is it a good idea to do that?
3- Is there any other solutions?