# Copyright (c) 2024 Mira Geoscience Ltd.
#
# This file is part of geoh5py.
#
# geoh5py is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# geoh5py is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with geoh5py. If not, see <https://www.gnu.org/licenses/>.
from __future__ import annotations
import uuid
import warnings
from io import BytesIO
from pathlib import Path
from tempfile import TemporaryDirectory
from typing import TYPE_CHECKING, Any
import numpy as np
from PIL import Image
from PIL.TiffImagePlugin import TiffImageFile
from ..data import FilenameData
from ..shared.conversion import GeoImageConversion
from ..shared.utils import (
PILLOW_ARGUMENTS,
box_intersect,
dip_points,
xy_rotation_matrix,
)
from .object_base import ObjectBase, ObjectType
if TYPE_CHECKING:
from ..objects import Grid2D
[docs]
class GeoImage(ObjectBase):
"""
Image object class.
.. warning:: Not yet implemented.
"""
__TYPE_UID = uuid.UUID(
fields=(0x77AC043C, 0xFE8D, 0x4D14, 0x81, 0x67, 0x75E300FB835A)
)
_converter: type[GeoImageConversion] = GeoImageConversion
def __init__(self, object_type: ObjectType, **kwargs):
self._vertices: None | np.ndarray = None
self._cells = None
self._tag: dict[int, Any] | None = None
super().__init__(object_type, **kwargs)
@property
def cells(self) -> np.ndarray | None:
r"""
:obj:`numpy.ndarray` of :obj:`int`, shape (\*, 2):
Array of indices defining segments connecting vertices. Defined based on
:obj:`~geoh5py.objects.curve.Curve.parts` if set by the user.
"""
if getattr(self, "_cells", None) is None:
if self.on_file:
self._cells = self.workspace.fetch_array_attribute(self)
else:
self.cells = np.c_[[0, 1, 2, 0], [0, 2, 3, 0]].T.astype("uint32")
return self._cells
@cells.setter
def cells(self, indices):
assert indices.dtype == "uint32", "Indices array must be of type 'uint32'"
self._cells = indices
self.workspace.update_attribute(self, "cells")
[docs]
def copy(
self,
parent=None,
copy_children: bool = True,
clear_cache: bool = False,
mask: np.ndarray | None = None,
**kwargs,
):
"""
Function to copy an entity to a different parent entity.
:param parent: New parent for the copied object.
:param copy_children: Copy children entities.
:param clear_cache: Clear cache of data values.
:param mask: Array of indices to sub-sample the input entity.
:param kwargs: Additional keyword arguments.
"""
if mask is not None:
warnings.warn("Masking is not supported for GeoImage objects.")
new_entity = super().copy(
parent=parent,
copy_children=copy_children,
clear_cache=clear_cache,
**kwargs,
)
return new_entity
[docs]
def copy_from_extent( # pylint: disable=too-many-locals
self,
extent: np.ndarray,
parent=None,
copy_children: bool = True,
clear_cache: bool = False,
inverse: bool = False,
**kwargs,
) -> GeoImage | None:
"""
Sub-class extension of :func:`~geoh5py.shared.entity.Entity.copy_from_extent`.
"""
# todo: save the temp grid in a temp workspace?
if self.vertices is None:
raise AttributeError("Vertices are not defined.")
if self.image is None:
warnings.warn("Image is not defined.")
return None
# transform the image to a grid
grid = self.to_grid2d(parent=parent, mode="RGBA")
# transform the image
grid_transformed = grid.copy_from_extent(
extent=extent,
parent=parent,
copy_children=copy_children,
clear_cache=clear_cache,
inverse=inverse,
from_image=True,
**kwargs,
)
if grid_transformed is None:
grid.workspace.remove_entity(grid)
warnings.warn("Image could not be cropped.")
return None
# transform the grid back to an image
image_transformed = grid_transformed.to_geoimage(
keys=grid_transformed.get_data_list(), mode="RGBA", normalize=False
)
grid.workspace.remove_entity(grid_transformed)
grid.workspace.remove_entity(grid)
return image_transformed
[docs]
@classmethod
def default_type_uid(cls) -> uuid.UUID:
return cls.__TYPE_UID
@property
def default_vertices(self):
"""
Assign the default vertices based on image pixel count
"""
if self.image is not None:
return np.asarray(
[
[0, self.image.size[1], 0],
[self.image.size[0], self.image.size[1], 0],
[self.image.size[0], 0, 0],
[0, 0, 0],
]
)
return None
@property
def dip(self) -> float:
"""
Calculated dip of the image in degrees from the vertices position.
:return: the dip angle.
"""
if self.vertices is None or self.rotation is None:
raise AttributeError("The image has no vertices")
# Get rotation matrix
rotation_matrix = xy_rotation_matrix(np.deg2rad(-self.rotation))
# Rotate the vertices
rotated_vertices = (rotation_matrix @ self.vertices.T).T
# Calculate the vector perpendicular to the rotation
delta_xyz = rotated_vertices[0] - rotated_vertices[3]
# Compute dip in degrees
dip = np.rad2deg(
np.arctan2(delta_xyz[2], np.sqrt(delta_xyz[0] ** 2 + delta_xyz[1] ** 2))
)
return dip
@dip.setter
def dip(self, new_dip):
if self.vertices is None:
raise AttributeError("The image has no vertices")
# Transform the vertices to a plane
self.vertices = (
dip_points(
self.vertices - self.origin,
np.deg2rad(new_dip - self.dip),
np.deg2rad(self.rotation),
)
+ self.origin
)
@property
def extent(self) -> np.ndarray | None:
"""
Geography bounding box of the object.
:return: shape(2, 3) Bounding box defined by the bottom South-West and
top North-East coordinates.
"""
if self.vertices is not None:
return np.c_[self.vertices.min(axis=0), self.vertices.max(axis=0)].T
return None
[docs]
def georeference(self, reference: np.ndarray | list, locations: np.ndarray | list):
"""
Georeference the image vertices (corners) based on input reference and
corresponding world coordinates.
:param reference: Array of integers representing the reference used as reference points.
:param locations: Array of floats for the corresponding world coordinates
for each input pixel.
:return vertices: Corners (vertices) in world coordinates.
"""
reference = np.asarray(reference)
locations = np.asarray(locations)
if self.image is None:
raise AttributeError("An 'image' must be set before georeferencing.")
if reference.ndim != 2 or reference.shape[0] < 3 or reference.shape[1] != 2:
raise ValueError(
"Input reference points must be a 2D array of shape(*, 2) "
"with at least 3 control points."
)
if (
locations.ndim != 2
or reference.shape[0] != locations.shape[0]
or locations.shape[1] != 3
):
raise ValueError(
"Input 'locations' must be a 2D array of shape(*, 3) "
"with the same number of rows as the control points."
)
constant = np.ones(reference.shape[0])
param_x, _, _, _ = np.linalg.lstsq(
np.c_[constant, reference], locations[:, 0], rcond=None
)
param_y, _, _, _ = np.linalg.lstsq(
np.c_[constant, reference], locations[:, 1], rcond=None
)
param_z, _, _, _ = np.linalg.lstsq(
np.c_[constant, reference], locations[:, 2], rcond=None
)
corners = self.default_vertices[:, :2]
self.vertices = np.c_[
param_x[0] + corners @ param_x[1:],
param_y[0] + corners @ param_y[1:],
param_z[0] + corners @ param_z[1:],
]
self.set_tag_from_vertices()
[docs]
def georeferencing_from_image(self):
"""
Georeferencing the GeoImage from the image.
"""
if self.image is not None:
if self.tag is not None:
self.vertices = self.default_vertices
self.georeferencing_from_tiff()
else:
self.vertices = self.default_vertices
[docs]
def georeferencing_from_tiff(self):
"""
Get the geographic information from the PIL Image to georeference it.
Run the georeference() method of the object.
"""
if self.tag is None:
raise AttributeError("The image is not georeferenced")
try:
# get geographic information
u_origin = float(self.tag[33922][3])
v_origin = float(self.tag[33922][4])
u_cell_size = float(self.tag[33550][0])
v_cell_size = float(self.tag[33550][1])
u_count = float(self.tag[256][0])
v_count = float(self.tag[257][0])
u_oposite = float(u_origin + u_cell_size * u_count)
v_oposite = float(v_origin - v_cell_size * v_count)
# prepare georeferencing
reference = np.array([[0.0, v_count], [u_count, v_count], [u_count, 0.0]])
locations = np.array(
[
[u_origin, v_origin, 0.0],
[u_oposite, v_origin, 0.0],
[u_oposite, v_oposite, 0.0],
]
)
# georeference the raster
self.georeference(reference, locations)
except KeyError:
warnings.warn("The 'tif.' image has no referencing information.")
@property
def image(self):
"""
Get the image as a :obj:`PIL.Image` object.
"""
if self.image_data is not None:
return Image.open(BytesIO(self.image_data.values))
return None
@image.setter
def image(self, image: str | np.ndarray | BytesIO | Image.Image):
"""
Create a :obj:`~geoh5py.data.filename_data.FilenameData`
from dictionary of name and arguments.
The provided arguments can be any property of the target Data class.
:return: List of new Data objects.
"""
convert_to_grid = False
# todo: this should be changed in the future to accept tiff images
if isinstance(image, np.ndarray) and image.ndim in [2, 3]:
if image.ndim == 3 and image.shape[2] != 3:
raise ValueError(
"Shape of the 'image' must be a 2D or "
"a 3D array with shape(*,*, 3) representing 'RGB' values."
)
value = image
if image.min() < 0 or image.max() > 255 or image.dtype != "uint8":
value = image.astype(float)
value -= value.min()
value *= 255.0 / value.max()
value = value.astype("uint8")
image = Image.fromarray(value)
elif isinstance(image, str):
if not Path(image).is_file():
raise ValueError(f"Input image file {image} does not exist.")
image = Image.open(image)
elif isinstance(image, bytes):
image = Image.open(BytesIO(image))
elif not isinstance(image, Image.Image):
raise ValueError(
"Input 'value' for the 'image' property must be "
"a 2D or 3D numpy.ndarray, bytes, PIL.Image or a path to an existing image."
f"Get type {type(image)} instead."
)
# if the image is a tiff save tag information
if isinstance(image, TiffImageFile):
self.tag = image
convert_to_grid = True
with TemporaryDirectory() as tempdir:
if image.mode not in PILLOW_ARGUMENTS:
raise NotImplementedError(
f"The mode {image.mode} of the image is not supported."
)
temp_file = Path(tempdir) / "image"
image.save(temp_file, **PILLOW_ARGUMENTS[image.mode])
if self.image_data is not None:
self.workspace.remove_entity(self.image_data)
image = self.add_file(str(temp_file))
image.name = "GeoImageMesh_Image"
image.entity_type.name = "GeoImageMesh_Image"
# quick and dirty fix: create a grid if image is tiff
if convert_to_grid:
self.to_grid2d(name=self.name + "_grid2d")
@property
def image_data(self):
"""
Get the FilenameData entity holding the image.
"""
for child in self.children:
if isinstance(child, FilenameData) and child.name == "GeoImageMesh_Image":
return child
return None
@property
def image_georeferenced(self) -> Image.Image | None:
"""
Get the image as a georeferenced :obj:`PIL.Image` object.
"""
if self.tag is not None and self.image is not None:
image = self.image
# modify the exif
for id_ in self.tag:
image.getexif()[id_] = self.tag[id_]
return image
return None
[docs]
def mask_by_extent(
self, extent: np.ndarray, inverse: bool = False
) -> np.ndarray | None:
"""
Sub-class extension of :func:`~geoh5py.shared.entity.Entity.mask_by_extent`.
Uses the four corners of the image to determine overlap with the extent window.
"""
if self.extent is None or not box_intersect(self.extent, extent):
return None
if self.vertices is not None:
return np.ones(self.vertices.shape[0], dtype=bool)
return None
@property
def origin(self) -> np.array | None:
"""
The origin of the image.
:return: an array of the origin of the image in x, y, z.
"""
if self.vertices is not None:
return self.vertices[3, :]
return None
@property
def rotation(self) -> float | None:
"""
The rotation of the image in degrees, counter-clockwise.
:return: the rotation angle.
"""
if self.vertices is None:
raise AttributeError("The image has no vertices")
dxy = np.r_[np.diff(self.vertices[:2, 0]), np.diff(self.vertices[:2, 1])]
dxy /= np.linalg.norm(dxy)
rotation_rad = np.arctan2(dxy[1], dxy[0])
return np.rad2deg(rotation_rad)
@rotation.setter
def rotation(self, new_rotation):
if self.vertices is None:
raise AttributeError("The image has no vertices")
# Compute rotation matrix
rotation_matrix = xy_rotation_matrix(np.deg2rad(new_rotation - self.rotation))
# get the vertices without the origin
vertices = self.vertices - self.origin
# get the rotation matrix
vertices = rotation_matrix @ vertices.T
# save the vertices
self.vertices = vertices.T + self.origin
[docs]
def save_as(self, name: str, path: str | Path = ""):
"""
Function to save the geoimage into an image file.
It the name ends by '.tif' or '.tiff' and the tag is not None
then the image is saved as georeferenced tiff image ;
else, the image is save with PIL.Image's save function.
:param name: the name to give to the image.
:param path: the path of the file of the image, default: ''.
"""
# verifications
if self.image is None:
raise AttributeError("The object contains no image data")
if not isinstance(name, str):
raise TypeError(
f"The 'name' has to be a string; a '{type(name)}' was entered instead"
)
if not isinstance(path, (str, Path)):
raise TypeError(
f"The 'path' has to be a string or a Path; a '{type(name)}' was entered instead"
)
if path != "" and not Path(path).is_dir():
raise FileNotFoundError(f"No such file or directory: {path}")
if name.endswith((".tif", ".tiff")) and self.tag is not None:
# save the image
image: Image = self.image_georeferenced
image.save(Path(path) / name, exif=image.getexif())
else:
self.image.save(Path(path) / name)
[docs]
def set_tag_from_vertices(self):
"""
If tag is None, set the basic tag values based on vertices
in order to export as a georeferenced .tiff.
WARNING: this function must be used after georeference().
"""
if self.image is None:
raise AttributeError("There is no image to reference")
if not isinstance(self.vertices, np.ndarray):
raise AttributeError("Vertices must be set before setting tag")
if self._tag is None:
self._tag = {}
width, height = self.image.size
self._tag[256] = (width,)
self._tag[257] = (height,)
self._tag[33922] = (
0.0,
0.0,
0.0,
self.vertices[0, 0],
self.vertices[0, 1],
self.vertices[0, 2],
)
self._tag[33550] = (
abs(self.vertices[1, 0] - self.vertices[0, 0]) / width,
abs(self.vertices[0, 1] - self.vertices[2, 1]) / height,
0.0,
)
@property
def tag(self) -> dict | None:
"""
Georeferencing information of a tiff image stored in the header.
:return: a dictionary containing the PIL.Image.tag information.
"""
if self._tag:
return self._tag.copy()
return None
@tag.setter
def tag(self, image: Image.Image | dict | None):
if isinstance(image, (Image.Image, TiffImageFile)):
self._tag = dict(image.tag)
elif isinstance(image, dict):
self._tag = image
elif image is None:
self._tag = None
else:
raise ValueError("Input 'tag' must be a PIL.Image")
[docs]
def to_grid2d(
self,
mode: str | None = None,
**grid2d_kwargs,
) -> Grid2D:
"""
Create a geoh5py :obj:geoh5py.objects.grid2d.Grid2D from the geoimage in the same workspace.
:param mode: The output image mode, defaults to the incoming image.mode.
If "GRAY" convert the image to grayscale.
:param grid2d_kwargs: Keyword arguments to pass to the
:obj:`geoh5py.objects.grid2d.Grid2D` constructor.
:return: the new created :obj:`geoh5py.objects.grid2d.Grid2D`.
"""
return self.converter.to_grid2d(self, mode, **grid2d_kwargs)
@property
def vertices(self) -> np.ndarray | None:
"""
:obj:`~geoh5py.objects.object_base.ObjectBase.vertices`:
Defines the four corners of the geo_image
"""
if (getattr(self, "_vertices", None) is None) and self.on_file:
self._vertices = self.workspace.fetch_array_attribute(self, "vertices")
if self._vertices is None and self.image is not None:
if self.tag is not None:
self.vertices = self.default_vertices
self.georeferencing_from_tiff()
else:
self.vertices = self.default_vertices
# todo: change the call from vertices to vertices_xyz in the code
if self._vertices is not None:
return self._vertices.view("<f8").reshape((-1, 3)).astype(float)
return self._vertices
@vertices.setter
def vertices(self, xyz: np.ndarray | list):
if isinstance(xyz, list):
xyz = np.asarray(xyz)
if not isinstance(xyz, np.ndarray) or xyz.shape != (4, 3):
raise ValueError("Input 'vertices' must be a numpy array of shape (4, 3)")
xyz = np.asarray(
np.core.records.fromarrays(xyz.T, names="x, y, z", formats="<f8, <f8, <f8")
)
self._vertices = xyz
self.workspace.update_attribute(self, "vertices")