I have a medical image set and I am trying to train my network using faster rCNN. The idea is to detect tumors in image. My example image containing a tumor like below..
I have extracted all the tumor location coordinates and it is ready to be trained using faster rCNN. I follow this github page.. https://github.com/you359/Keras-FasterRCNN According to this, the input file format should be like this;
file_path_to_the_image, x_min, y_min, x_max, y_max, class
When training the network, I must include background class as well. For example, benign tumors
, malignant tumors
, background
as classes. How do I include background class? it is not very clear to me, how to teach the system about the background class. Much appreciate if someone could give a hint.