Skip to content
Snippets Groups Projects
Commit b0906919 authored by Alán Muñoz's avatar Alán Muñoz
Browse files

add typing and save metadata in tiler

parent e981cd44
No related branches found
No related tags found
No related merge requests found
......@@ -178,13 +178,14 @@ class Tiler(ProcessABC):
def __init__(
self,
image: Image,
metadata,
image: da.core.Array,
metadata: dict,
parameters: TilerParameters,
trap_locs=None,
):
super().__init__(parameters)
self.image = image
self._metadata = metadata
self.channels = metadata["channels"]
self.ref_channel = self.get_channel_index(parameters.ref_channel)
self.trap_locs = trap_locs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment