Skip to content
Snippets Groups Projects
Commit 0e2a9c4d authored by tpylak's avatar tpylak
Browse files

LMS-1992 jython dropbox: doc

SVN: 20009
parent 4113dee9
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,8 @@ class ImageDataSetFlexible(SimpleImageDataConfig): ...@@ -35,6 +35,8 @@ class ImageDataSetFlexible(SimpleImageDataConfig):
return image_tokens return image_tokens
""" """
Overrides the default implementation which returns (1, maxTileNumber) geometry.
Calculates the width and height of the matrix of tiles (a.k.a. fields or sides) in the well. Calculates the width and height of the matrix of tiles (a.k.a. fields or sides) in the well.
Parameter imageMetadataList: a list of metadata for each encountered image Parameter imageMetadataList: a list of metadata for each encountered image
...@@ -46,6 +48,8 @@ class ImageDataSetFlexible(SimpleImageDataConfig): ...@@ -46,6 +48,8 @@ class ImageDataSetFlexible(SimpleImageDataConfig):
return Geometry.createFromRowColDimensions(maxTileNumber / 3, 3); return Geometry.createFromRowColDimensions(maxTileNumber / 3, 3);
""" """
Overrides the default implementation which does the same thing (to demonstrate how this can be done).
For a given tile number and tiles geometry returns (x,y) which describes where the tile is For a given tile number and tiles geometry returns (x,y) which describes where the tile is
located on the well. located on the well.
......
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