You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using BlobDetector to find spots in an ImageStack without using a reference_image and with is_volume=False error is thrown because BlobDetector is hard coded to parse the result of skimage.feature.blob_log run on 3D numpy array.
Using a reference_image doesn't throw this error because it ignores the is_volume argument and runs everything like is_volume=True.
starfish user trying to find spots in 3D images runs out of memory when using is_volume=True. Her workaround seems analogous to setting is_volume=False. Fixing this bug would allow her to use BlobDetector as intended.
Description
When using
BlobDetector
to find spots in anImageStack
without using areference_image
and withis_volume=False
error is thrown becauseBlobDetector
is hard coded to parse the result ofskimage.feature.blob_log
run on 3D numpy array.Using a
reference_image
doesn't throw this error because it ignores theis_volume
argument and runs everything likeis_volume=True
.Steps/Code to Reproduce
code to reproduce error
Expected Results
Expect to return an
IntensityTable
Actual Results
The text was updated successfully, but these errors were encountered: