fix #453: use np.array() instead of np.asarray() for PIL image conversion - #455
Draft
cursor[bot] wants to merge 1 commit into
Draft
fix #453: use np.array() instead of np.asarray() for PIL image conversion#455cursor[bot] wants to merge 1 commit into
cursor[bot] wants to merge 1 commit into
Conversation
…sion in stereo_to_anndata np.asarray() creates a read-only view of the PIL Image pixel buffer rather than an independent copy. When the PIL Image objects are garbage collected after the function returns, the numpy arrays stored in adata.uns['spatial'] can point to freed memory, resulting in all-255 (white) pixel values. Replace np.asarray() with np.array() to ensure the numpy arrays own their data independently of the PIL Image lifecycle. Co-authored-by: wanruiwen-genomics-cn <wanruiwen-genomics-cn@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
In
stereo_to_anndata(), the image processing code usesnp.asarray()to convert PIL Image objects to numpy arrays.np.asarray()creates a read-only view of the PIL Image's internal pixel buffer rather than an independent copy. When the PIL Image objects are garbage collected after the function returns, the numpy arrays stored inadata.uns['spatial']can point to freed memory, resulting in all-255 (white) pixel values.This issue is version-dependent — some Pillow/NumPy combinations maintain the data through a
bytesreference, while others do not, making it a subtle intermittent bug.Changes
stereo/io/reader.py: Replacenp.asarray(hires)withnp.array(hires)andnp.asarray(lowres)withnp.array(lowres)to ensure the numpy arrays own their pixel data independently of the PIL Image lifecycle.Verification
np.array()always creates an owned copyClassification
Closes #453