In an effort to combine medical expertise with deep learning I would like to combine in one tensor multiple images which represent different maps of the same CT image.
So say we begin with the following CT image:
We can hand craft different mappings of this particular image (i.e. transformations) that will embody relevant medical diagnostic knowledge.
So we may end up with say 10 2D grayscale images starting from 1 which we can then pack in a 3D tensor.
Is it possible to use transfer learning leveraging trained DL CNN models in the public domain (e.g. Keras) using as inputs these 3D images with 10 Channels (rather than 3 -- R-G-B)?
If yes how? If not, what are the alternatives?