Created
September 23, 2021 11:12
-
-
Save psobolewskiPhD/ead0522775271893e865bce57cdf4268 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# %% | |
import napari | |
from skimage import data | |
# %% | |
viewer = napari.Viewer() | |
image = viewer.add_image(data.astronaut(), rgb=True) | |
image.data.shape | |
# %% | |
viewer.camera.zoom = 2.5 | |
# %% | |
crop = image.data[tuple(slice(i[0], i[1]) for i in image.corner_pixels.T.astype(int))] | |
crop.shape | |
# %% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment