semantic-segmentation-pytorch icon indicating copy to clipboard operation
semantic-segmentation-pytorch copied to clipboard

Pytorch implementation of FCN, UNet, PSPNet, and various encoder models.

Results 9 semantic-segmentation-pytorch issues
Sort by recently updated
recently updated
newest added

hello author, i have implemented similar fcn vgg like yours. But my fcn32 gives better results than fcn 16 and 8. why is this. Can you please check my code....

Hi, originally it work well with num_class=256... but when I edited `img = img.astype('float32') / 255.0, seg = seg.astype('float32') / 255.0` in segmentation_dataset.py, and ` target = target//255` in trainer.py...

Hi, I want to output the gray image for the binary classfication, how should I edit it? I try to edit this part but failed: `random.seed(0) class_colors = [(random.randint(0, 255),...

Hi, when I try to edit the unet to unet++, it seems that the horizontal connections are only added from the second layer, and the last output layer is up-sampled...

Dear sir, I study your code for a long time, thanks for your contribution. Nearly, I find pspnet's encoder (resnet50) need dilation, however, I didn't find it.Do you write it...

I want to try e.g. FCN8 on a custom dataset of high channel images(100ch+) but I'm not used to image segmentation with pretrained encoders. Are the models w/ corresponding encoders...

HI, @IanTaehoonYoo How can I get the location coordinates of detected objects at inference time ? Thanks. Best, @bemoregt.

Error in `Trainer.train() ` `RuntimeError: stack expects each tensor to be equal size, but got [3, 200, 257] at entry 0 and [3, 200, 341] at entry 2` When using...

I tested with several model configurations, with and without pretrained weights, but am only getting black images for prediction outputs. Is this library not suitable for binary classification (background =...