StereoscoPy icon indicating copy to clipboard operation
StereoscoPy copied to clipboard

Stereoscopic 3D image creator: anaglyph, side-by-side (cross-eye and parallel), over/under, wiggle GIF, interlaced, checkerboard

Results 8 StereoscoPy issues
Sort by recently updated
recently updated
newest added

Calling this: ``` stereoscopy.create_anaglyph((left, right), color_scheme="red-green", method="gray").save(rgAnagFileName) ``` Results in the following: ![front-anaglyph-rg](https://github.com/2sh/StereoscoPy/assets/194820/b4093c93-7160-4860-bf9a-473297f86a66) Shouldn't the background be white / gray, like calling without the `color_scheme` param? That is just green...

how to do right pair prediction in python from left image and depthmap ,it will be very helpful , if you find in solution python ,gpu. Thanks..

``` File "/Users/cmahnke/projects/StereoscoPy/stereoscopy/__init__.py", line 370, in resize image = image.resize(re_size, Image.ANTIALIAS) AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS' ``` This has changed with Pillow 10, see https://pillow.readthedocs.io/en/stable/releasenotes/10.0.0.html#constants

Please add `left.jpg` and `right.jpg` to the `example_images` directory to be able to try out the provided examples from `README.md` directly.

This isn't a real feature request, just an idea (since the discussion tab isn't enabled): Consider adding [MPO](https://pillow.readthedocs.io/en/stable/handbook/image-file-formats.html#mpo) support, since some digital 3D cameras produce this format natively.

enhancement

`PIL.ImageMath.eval()` has been [removed](https://pillow.readthedocs.io/en/stable/deprecations.html#imagemath-eval) from Pillow 12.0.0 ``` Traceback (most recent call last): File "/Users/cmahnke/Blogs/vintagereality/./scripts/./image-splitter.py", line 386, in stereoscopy.create_anaglyph((left.copy(), right.copy()), method="gray").save(anagFileName) ~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/opt/homebrew/anaconda3/lib/python3.13/site-packages/stereoscopy/__init__.py", line 721, in create_anaglyph return am.createAnaglyph(images)...