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
The radius calculated for blobs in 2d and 3d based on pixels should be different, but instead, it uses the same formula (probably a copy+paste error by the author).
This can be easily corrected by changing the 2d case from np.sqrt(3) to np.sqrt(2).
See Notes of https://scikit-image.org/docs/stable/api/skimage.feature.html#skimage.feature.blob_log
Description
The radius calculated for blobs in 2d and 3d based on pixels should be different, but instead, it uses the same formula (probably a copy+paste error by the author).
This can be easily corrected by changing the 2d case from np.sqrt(3) to np.sqrt(2).
See Notes of https://scikit-image.org/docs/stable/api/skimage.feature.html#skimage.feature.blob_log
Relevant Code
starfish/starfish/core/spots/FindSpots/blob.py
The text was updated successfully, but these errors were encountered: