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
{{ message }}
This repository was archived by the owner on Sep 11, 2025. It is now read-only.
In a dataset where some of the frames are completely filled with zero-values, I noticed that the ThunderSTORM "never" finished.
I could circumvent this with a simple script that sets the pixel intensity at x = 1; y = 1 to 1 in frames with only zero values;
I hope this can be of help/if others have similar problems. There might also be other solutions or that the error is on my side.
Small imageJ macro lines to fix zero only frames
// print(slices);for(i = 1; i <= slices; i++){
setSlice(i);
getRawStatistics(nPixels, mean, min, max, std, histogram);
if(max == 0){
setPixel(1, 1, 1);
print("zeros only in slice: " + i);
}
}