semantic-segmentation

Semantic segmentation dataset organization

Semantic segmentation dataset organization Question: I am trying to segment 4 lesions with semantic segmentation. I follow this this great post My training folder has only 2 subfolders with patches: masks and images. Inside the folder with masks, ALL the classes are mixed. The other folder has the corresponding images. So, when I train the …

Total answers: 1

How to set heatmap aspect ratio

How to set heatmap aspect ratio Question: I have a single-channel image where each integer pixel value maps to a string. For example 5 -> ‘person’. I’m trying to create an interactive image where hovering over a pixel will display it’s corresponding string. I figured using plotly heatmaps might be the way to do this. …

Total answers: 3

Last convoulutional layer in U-net architecure is expecting wrong dimention

Last convoulutional layer in U-net architecure is expecting wrong dimention Question: I am trying to implement u-net in Keras,but I got this error while training the model(call model.fit()): ValueError: Error when checking target: expected conv2d_302 to have shape > (None, 1, 128, 640) but got array with shape (360, 1, 128, 128) And the output …

Total answers: 1