Source code for mantidimaging.core.io.utility
# Copyright (C) 2024 ISIS Rutherford Appleton Laboratory UKRI
# SPDX - License - Identifier: GPL-3.0-or-later
from __future__ import annotations
import glob
import os
import numpy as np
from logging import getLogger
log = getLogger(__name__)
DEFAULT_IO_FILE_FORMAT = 'tif'
NEXUS_PROCESSED_DATA_PATH = "processed-data"
THRESHOLD_180 = np.radians(1)
[docs]
def find_first_file_that_is_possibly_a_sample(file_path: str) -> str | None:
# Grab all .tif or .tiff files
possible_files = glob.glob(os.path.join(file_path, "**/*.tif*"), recursive=True)
for possible_file in sorted(possible_files):
lower_filename = os.path.basename(possible_file).lower()
if "flat" not in lower_filename and "dark" not in lower_filename and "180" not in lower_filename:
return possible_file
return None
[docs]
def find_projection_closest_to_180(projections: np.ndarray, projection_angles: np.ndarray) -> tuple[np.ndarray, float]:
"""
Finds the projection closest to 180 and returns it with the difference.
:param projections: The array of projection images.
:param projection_angles: The array of projection angles.
:return: The 180 projection/the closest non-180 projection and the difference between its angle and 180.
"""
diff = np.abs(projection_angles - np.pi)
return projections[diff.argmin()], np.amin(diff)