reconstrue / cuboids

Cloud-native neuroscientific volumetric cuboids processed over HTTP
http://reconstrue.com
Apache License 2.0
0 stars 0 forks source link

PyramidBuilder #16

Open JohnTigue opened 4 years ago

JohnTigue commented 4 years ago

Chunckflow already has class DownsampleUploadOperator(OperatorBase):

Multiple mip level downsampling including image and segmenation.
For image, the algorithm will be automatically choosen as average pooling.
For segmentation, the algorithm will be Will Silversman's countless algorithm to perform model pooling. The most frequent segmentation ID will be choosen.

The type of chunk was automatically determined from the data type.
Image: uint8, floating Segmentation: uint16, uint32, uint64,...

See also #18

JohnTigue commented 4 years ago

Would like the Operator to be driven by SQS or other. I.e. algorithm can be impl'd via SQS (on AWS and Lambda) or some small one machine queue on Colab.