File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -269,6 +269,10 @@ class CLEMImageSeries(SQLModel, table=True): # type: ignore
269269 ) # One to many
270270
271271 # Process checklist for series
272+ # FIXME: Columns need to be updated now that workflow is clearer
273+ # - Image alignment to happen in two stages:
274+ # 1. Align to self, then
275+ # 2. Align to a reference stack
272276 number_of_members : int = (
273277 0 # Expected number of image stacks belonging to this series
274278 )
@@ -323,6 +327,11 @@ class CLEMImageStack(SQLModel, table=True): # type: ignore
323327 )
324328
325329 # Process checklist for each image
330+ # FIXME: Columns need to be updated now that workflow is clearer
331+ # - Image registration to happen in two stages:
332+ # 1. Align to itself, then
333+ # 2. Align to a reference image
334+ # - Individual RGB images don't need to be created; columns can be removed
326335 stack_created : bool = False # Verify that the stack has been created
327336 image_aligned : bool = False # Verify that image alignment has been done on stack
328337 aligned_image : Optional [str ] = None # Full path to aligned image stack
You can’t perform that action at this time.
0 commit comments