We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d975ab9 commit e8c2d8dCopy full SHA for e8c2d8d
gallery/experiments/experimental_abinitio_pipeline_10081.py
@@ -64,15 +64,15 @@
64
65
# Downsample the images
66
logger.info(f"Set the resolution to {img_size} X {img_size}")
67
-src.downsample(img_size)
+src = src.downsample(img_size)
68
69
# Use phase_flip to attempt correcting for CTF.
70
logger.info("Perform phase flip to input images.")
71
-src.phase_flip()
+src = src.phase_flip()
72
73
# Estimate the noise and `Whiten` based on the estimated noise
74
aiso_noise_estimator = AnisotropicNoiseEstimator(src)
75
-src.whiten(aiso_noise_estimator.filter)
+src = src.whiten(aiso_noise_estimator.filter)
76
77
# Caching is used for speeding up large datasets on high memory machines.
78
src = src.cache()
0 commit comments