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
Hello, at first, i like to thank you about the code that you have shared. My question is, how can we obtain 1) the probability of belonging to a field; 2) the probability
of belonging to a boundary; and 3) the distance to the closest
boundary with the corresponding code and have you used watershed algorithm as the resunet article suggests.
Hello, at first, i like to thank you about the code that you have shared. My question is, how can we obtain 1) the probability of belonging to a field; 2) the probability
of belonging to a boundary; and 3) the distance to the closest
boundary with the corresponding code and have you used watershed algorithm as the resunet article suggests.
`dist = ZeroPadding2D(padding=1)(x1)
dist = Conv2D(32, 3)(dist)
dist = self.normalization(dist, self.layer_norm)
dist = Activation('relu')(dist)
dist = ZeroPadding2D(padding=1)(dist)
dist = Conv2D(32, 3)(dist)
dist = self.normalization(dist, self.layer_norm)
dist = Activation('relu')(dist)
dist = Conv2D(self.num_classes, 1, activation='softmax', name = 'distance')(dist)
The text was updated successfully, but these errors were encountered: