Hi all,
I'm working on image segmentation using 3D images. I'd like to implement one of my CNNs in Keras. There is only one color channel for each image. For each voxel, I extract a patch in the xy-, yz-, and xz-planes. I want each of these patches to go into their own paths in the CNN, until the final layers where I concatenate the feature map outputs and train a softmax classifier to classify the voxel.
Does anyone know how to do this? The only thing I can think of right now is training 3 CNNs separately, then removing the top layers from each CNN and train a final softmax classifier on the resulting output... however this seems inefficient as I would have to generate many times more feature maps for each patch (there are millions of patches).
Thanks,
Ian