Results 29 comments of taigw

Hi, what is the config file you used? Did you change the value of 'net_name'? If you have changed that, I think you need to re-train the model with your...

Hi zaabahmad, Can you make sure the output dir exists? You need to create that dir manually as the code does not create it automatically.

@zaabahmad In your first question, it seems that you were trying to save the data to ''/result17". I guess you intended to save it in "./result17".

@TigabuYaya Have you solved the problem?

@xinrui-zhuang , I used 'valid' mode for convolution in z-axis, so the outoput had a smaller size in z-axis.

Hi, the repository has only been tested with a single gpu.

Hi Reuben, In order to make Euclidean distance and Geodesic distance can be formulated in a single equation, this code uses a general idea that the total length of a...

Thanks Reuben, I think you are right. The previous code ignored the spacing information when calculating the gradient. This can be fixed by updating line 286 as follows: `float speed...

Hi, the normalization is quite easy. The code looks like the following: ``` img[img 100] = 100 img = img + 1400 img = img / 1500.0 ``` For cropping,...