image-segmentation-keras
image-segmentation-keras copied to clipboard
Implementation of Segnet, FCN, UNet , PSPNet and other models in Keras.
I'm working on liver tumor segmentation using CT images which are grayscale images and have one channel. How can I apply my dataset to this model? I have tried this...
python -m keras_segmentation
Regarding this: https://github.com/divamgupta/image-segmentation-keras/issues/110 I would like to add upsampling layers that would make me able to match my data. I haven't found a way to. My first try was to...
Hi, I have a question, is it possible to train the models on multiple gpus?
I want to know how to calculate AP@IOU=0.5? or mAP?
In which folder can I find the predicted output images? and i try to get the IoU scores but i get this i don't understand it 1it [00:03, 3.60s/it]immmmmmmmmmmmmmm 2it...
Why when I try to run this code I get error FileNotFoundError: [Errno 2] No such file or directory: ' dataset1/images_prepped_train/' even the folder exists !python -m keras_segmentation train \...
It's showing this error: ImportError: cannot import name 'IMAGE_ORDERING' from 'config'
Hi, I tried to run the command like python -m keras_segmentation train \ --checkpoints_path="path_to_checkpoints" \ --train_images="dataset1/images_prepped_train/" \ --train_annotations="dataset1/annotations_prepped_train/" \ --val_images="dataset1/images_prepped_test/" \ --val_annotations="dataset1/annotations_prepped_test/" \ --n_classes=50 \ --input_height=320 \ --input_width=640 \ --model_name="fcn_8_resnet50"...