You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If my understanding is correct, you pad the ROI if the size is smaller than the crop size. Why would you pad the segmentation ground truth to be 100? Should we pad it as 0s as the background truth label or is 100 a flag of padding?
Thank you~ :)
Best,
Zhuotun
The text was updated successfully, but these errors were encountered:
This is following the idea in deeplab. 100 is a flag of padding and we will remove these voxels(samples) when calculating the loss. In the softmaxloss layer, we can add "ignore_label" in the parameter. I remove the usage in the provided prototxt file. You can refer the following code:
Hello Lequan,
I am curious about a padding operation here:
HeartSeg/code/util/Create_ROIs.m
Line 28 in b689b37
If my understanding is correct, you pad the ROI if the size is smaller than the crop size. Why would you pad the segmentation ground truth to be 100? Should we pad it as 0s as the background truth label or is 100 a flag of padding?
Thank you~ :)
Best,
Zhuotun
The text was updated successfully, but these errors were encountered: