Mask_RCNN
Mask_RCNN copied to clipboard
Training Using TIFF Images
Please guide me as to how I can work with TIFF Images for training Mask_RCNN.
Hello @glenbhermon, you need to override the load_image() function in utils.py, as far as I understand Mask RCNN expects RGB (or better BGR) images at default. You can initialize your own load_image() function in your custom dataset class in order to process TIFF files. Be sure to change image channel count in your config class as well. Hope it helped!