File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
napari_cellseg3d/code_models Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -244,11 +244,11 @@ def load_layer(self):
244244 if self .config .sliding_window_config .is_enabled ():
245245 load_transforms = Compose (
246246 [
247+ QuantileNormalization (),
247248 ToTensor (),
248249 # anisotropic_transform,
249250 AddChannel (),
250251 # SpatialPad(spatial_size=pad),
251- QuantileNormalization (),
252252 AddChannel (),
253253 EnsureType (),
254254 ],
@@ -260,10 +260,10 @@ def load_layer(self):
260260 pad = utils .get_padding_dim (dims_check )
261261 load_transforms = Compose (
262262 [
263+ QuantileNormalization (),
263264 ToTensor (),
264265 # anisotropic_transform,
265266 AddChannel (),
266- QuantileNormalization (),
267267 SpatialPad (spatial_size = pad ),
268268 AddChannel (),
269269 EnsureType (),
You can’t perform that action at this time.
0 commit comments