Skip to main content

Matplotlib extension to make stereograms

Project description

Release Builds Tests PyPI - Python Version

mpl_stereo

Matplotlib add-on to make stereograms.

Stereograms can significantly enhance the interpretability of 3D data by leveraging human binocular vision. Instead of trying to imagine how the flat projection on a page would look in real life, stereograms give us "3D glasses" for 2D data with just our eyes.

It takes some practice to be able to view the stereoscopic effect for the first time, but the effort is well worth it!

Usage

Installation

pip install mpl_stereo

Setup

import numpy as np
from mpl_stereo import AxesStereo2D, AxesStereo3D
# Generate some data, we'll make a (3,2) trefoil knot
t = np.linspace(0, 2*np.pi, 100)
x = np.cos(2*t) * (3 + np.cos(3*t))
y = np.sin(2*t) * (3 + np.cos(3*t))
z = np.sin(3*t)

2D plots

Currently, only a subset of matplotlib's 2D plots are officially supported. See the list by calling axstereo.known_methods.

axstereo = AxesStereo2D()
axstereo.plot(x, y, z, c='k', alpha=0.2)
axstereo.scatter(x, y, z, c=z, cmap='viridis', s=10)

When you are viewing the stereogram properly, you should see the knot weave in and out of the page!

Warning: Please note that for 2D plots the stereoscopic effect requires shifting data, so the data will not necessarily line up with the axis labels! Right now this can be controlled with the focal_plane parameter. Calling AxesStereo2D(focal_plane=-1) (the default) will ensure that the left axes data is not shifted, whereas AxesStereo2D(focal_plane=1) will lock down the right axes data. The tick labels for axes where the data is not aligned will have transparency applied. So in the plot above, the right side labels being lighter gray indicates that you should not trust that data to be positioned correctly, but the left subplot with its black labeling is accurate.

3D plots

The stereoscopic effect in 3D can be made just by rotating the plot view, so all of matplotlib's 3D plot types are supported.

axstereo = AxesStereo3D()
axstereo.plot(x, y, z, c='k', alpha=0.2)
axstereo.scatter(x, y, z, c=z, cmap='viridis', s=10)

Viewing Stereograms

These are not autostereograms, like the "Magic Eye" books that were popular in the 1990's. However, they use the same viewing technique. Below is ChatGPT's how-to guide on viewing these, but I'll try to find a better beginner-friendly resource to put here.

  1. Position the Stereogram: Place it at arm's length and ensure it's level with your eyes.
  2. Relax Your Focus: Look through the image, as if focusing on something distant, rather than the stereogram itself.
  3. Parallel Viewing: Try to view the image with your eyes parallel, similar to how you would look at a distant object.
  4. Align and Overlap: Adjust the angle and distance of the stereogram until the two images begin to overlap.
  5. Perceive the 3D Image: As the images overlap, a 3D image should emerge. Keep your focus steady to maintain the illusion.
  6. Practice: If initially unsuccessful, take breaks and try again. It might require some practice to get used to this method.

Parallel vs Cross-Eyed Viewing

By default, the stereograms are set up for "parallel" viewing method as described above. For "cross-eyed" viewing, initialize with a negative ipd parameter. An ipd (Inter-Pupilary Distance) of 65 millimeters is the default, so call AxesStereo2D(ipd=-65) for the default cross-eyed viewing.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mpl_stereo-0.1.1.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

mpl_stereo-0.1.1-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

File details

Details for the file mpl_stereo-0.1.1.tar.gz.

File metadata

  • Download URL: mpl_stereo-0.1.1.tar.gz
  • Upload date:
  • Size: 5.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.8.10 Linux/5.10.102.1-microsoft-standard-WSL2

File hashes

Hashes for mpl_stereo-0.1.1.tar.gz
Algorithm Hash digest
SHA256 064a00d162a01efde4d5a2ea34c36b7c69bc6abda94d62d53089cb9e48eb9e1d
MD5 670673231ac5c6a52173b60c11f4e664
BLAKE2b-256 6759019e29f9fc71ee4318ca3a147de2e545188096e5317424a108e88261a0e4

See more details on using hashes here.

Provenance

File details

Details for the file mpl_stereo-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: mpl_stereo-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 6.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.8.10 Linux/5.10.102.1-microsoft-standard-WSL2

File hashes

Hashes for mpl_stereo-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 45a1b72db39ddf0de723c53d3ff3a2821dd458564e80c549ba71f8a871b38b67
MD5 08f6133b1030bdcf7afbd6a4b802fdac
BLAKE2b-256 379a01ef14d101280a6d6a15e08dd027644af3b13661e3911e448db6102007e6

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page