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
from pathlib import Path | |
import mrcfile | |
import numpy as np | |
image_path = "CountRef_20250327_s004101_75-4_000_Mar27_17.04.37.mrc" | |
image = mrcfile.read(image_path) | |
image = np.array(image) | |
image = image[:, :4031] |
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 numpy as np | |
from scipy.spatial.transform import Rotation as R | |
from torch_fourier_slice import project_3d_to_2d, backproject_2d_to_3d | |
tilt_angles = np.linspace(-60, 60, 41, endpoint=True) | |
rotation_matrices = R.from_euler('y', angles=tilt_angles, degrees=True).as_matrix() | |
volume = simulate_volume() | |
projections = project_3d_to_2d(volume, rotation_matrices) | |
simulated_tomogram = backproject_2d_to_3d(projections, rotation_matrices) |
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 | |
import mrcfile | |
import torch | |
from torch_fourier_slice import project_3d_to_2d | |
volume = torch.tensor(mrcfile.read("run_class001.mrc")).float() | |
projection = project_3d_to_2d(volume, rotation_matrices=torch.eye(3)) | |
d, h, w = volume.shape |
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
# /// script | |
# requires-python = ">=3.11" | |
# dependencies = [ | |
# "pandas", | |
# "scipy", | |
# "starfile", | |
# "typer", | |
# "einops", | |
# "rich", | |
# ] |
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
# /// script | |
# requires-python = ">=3.11" | |
# dependencies = [ | |
# "pandas", | |
# "scipy", | |
# "starfile", | |
# "typer", | |
# "einops", | |
# ] | |
# [tool.uv] |
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
# /// script | |
# requires-python = ">=3.11" | |
# dependencies = [ | |
# "pandas", | |
# "starfile", | |
# "typer", | |
# ] | |
# [tool.uv] | |
# exclude-newer = "2025-01-01T00:00:00Z" | |
# /// |
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
# /// script | |
# requires-python = ">=3.11" | |
# dependencies = [ | |
# "dynamotable", | |
# "pandas", | |
# "scipy", | |
# "starfile", | |
# "typer", | |
# ] | |
# [tool.uv] |
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
# /// script | |
# requires-python = ">=3.11" | |
# dependencies = [ | |
# "dynamotable", | |
# "pandas", | |
# "scipy", | |
# "starfile", | |
# "typer", | |
# ] | |
# [tool.uv] |
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
# /// script | |
# requires-python = ">=3.11" | |
# dependencies = [ | |
# "dynamotable", | |
# "pandas", | |
# "scipy", | |
# "starfile", | |
# "typer", | |
# ] | |
# [tool.uv] |
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
from functools import partial | |
import napari | |
from magicgui.widgets import Button, Container | |
from scipy.spatial.transform import Rotation as R | |
from skimage import data | |
viewer = napari.Viewer(ndisplay=3) | |
blobs = data.binary_blobs(n_dim=3, length=32, volume_fraction=0.1) | |
viewer.add_image(blobs) |
NewerOlder