Blob Picker: ValueError: cannot reshape array of size 65280 into shape (1,1024,1024)

Hi @NKHO, this happens when there’s something wrong with one of the micrographs. It likely somehow got corrupted on disk.

In future releases of cryoSPARC, we’ll automatically skip these corrupt micrographs during extraction rather than fail the whole job. In the meantime, I suggest filtering them out using instructions here:

For your case, also change the part that says

os.stat(full_path).st_size > 0

to

os.stat(full_path).st_size > 1000000

Because it looks like the corrupt file is not empty.

Let me know how that goes.