Skip to main content

GPU accelerated implementation of the Taxim simulator.

Project description

GPU Accelerated Implementation of the Taxim Tactile Simulator

GPU accelerated implementation of the optical simulation of the Taxim Simulator. Both PyTorch and JAX backends are available. Note that this project is not the official implementation by the authors, which can be found here. Because of efficient use of vectorization and GPU acceleration, this implementation achieves significant speed-ups for image generation with and without shadows compared to the official implementation.

Here is a comparison of the render times for a single frame for the different implementations:

Implementation Without shadow With shadow
Original 67.08ms 120.99ms
Torch CPU 28.46ms 114.06ms
Torch GPU 3.29ms 8.24ms
JAX CPU 45.01ms 180.19ms
JAX GPU 0.72ms 1.69ms

The speed-up is around x21 for image generation without shadow and around x25 with shadow.

Installation

Taxim can be installed via

pip install taxim[OPTIONS]

where OPTIONS can be any subset of the following:

  • torch: Install the PyTorch backend.
  • jax: Install the JAX backend with CUDA 12 support.
  • jax-cpu: Install the JAX backend without GPU support.
  • examples: Install dependencies for running the examples.
  • all: Install all of the above.

Note that either torch, jax, or jax-cpu has to be chosen as a backend for Taxim to work.

Depending on the installed CUDA version, PyTorch, torch-scatter, and JAX might have to be installed manually. Follow the instructions on their respective websites to do so.

Usage

To use the tactile simulator, first create an instance of the Taxim class:

from taxim import Taxim

taxim = Taxim(device="cuda")

Optionally, you can pass the constructor a path to a calibration folder if you wish to use a different calibration.

Now you can use this instance to render a height map into a tactile image:

# Generate some arbitrary heightmap
height_map = torch.zeros((taxim.height, taxim.width), device=dev)
height_map[200:300, 200:500] = -10.0

# Render an image using this height map
img = taxim.render(height_map, with_shadow=True, press_depth=1.0)

The values of the height map correspond to the distance of the object to the highest (furthest from the camera) point of the gel in mm. Hence, a value of 0 means that the corresponding point is at the same height as the highest point of the gel. The smaller the values of the height map are, the closer are the corresponding points to the camera. For a point to be in contact with the gel, it has to have a value smaller or equal to zero.

Note that this definition of the height map differs from the original definition by the authors, who assume that higher values mean that points are closer, and use a different reference point. If you want to recover the original behavior of Taxim, just pass orig_hm_fmt=True when calling taxim.render:

# Render an image using this height map
img = taxim.render(height_map, with_shadow=True, press_depth=1.0, orig_hm_fmt=True)

For a usage example refer to example/taxim_visualize.py.

Using a different calibration

To use a different calibration, you must create a folder with the following files and pass its path as an argument to the Taxim constructor:

  1. dataPack.npz: contains the recorded data. Actually only the first frame is needed for generating the background, but we keep it like it is to be compatible to the original Taxim calibration files.
  2. gelmap.npy: contains the height map of the gel pad.
  3. params.json: contains parameters for the simulator. For an example, refer to taxim/calib/params.json
  4. polycalib.npz: contains the polynomial coefficients for the gel simulation.
  5. shadowTable.npz: contains the shadow table.

For further explanation on how to obtain these files, please refer to the original implementation.

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

taxim-1.4.0.tar.gz (27.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

taxim-1.4.0-py3-none-any.whl (27.4 MB view details)

Uploaded Python 3

File details

Details for the file taxim-1.4.0.tar.gz.

File metadata

  • Download URL: taxim-1.4.0.tar.gz
  • Upload date:
  • Size: 27.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for taxim-1.4.0.tar.gz
Algorithm Hash digest
SHA256 755e2525baac90e673ccb76f81657d108dfddd8e1220f4ce637a42c0b7e84771
MD5 ac05763a1886ec7b054ff2525e696aca
BLAKE2b-256 4dddb5cf50e56767f4834c2d3e5d4080a8b0a7c08a0279d9275980794abf4ea4

See more details on using hashes here.

File details

Details for the file taxim-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: taxim-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 27.4 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for taxim-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c5a7f8276fb933552e8d6c10a3456a0d0cabcffbed875c274e7a1ef1dc37ae8b
MD5 086521858d32712cd479da80b256bae0
BLAKE2b-256 5f709e088ca05955add697478c0ad9e18f1c46894931d8890b8031babfb9a237

See more details on using hashes here.

Supported by

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