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:

Usage

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

import torch
from taxim import Taxim

dev = "cuda"

taxim = Taxim(device=dev)

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.3.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.3.0-py3-none-any.whl (27.4 MB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for taxim-1.3.0.tar.gz
Algorithm Hash digest
SHA256 46f1d15e3d6fecbb105a33f33505a14b0434126275b0069981a3d054b6276edb
MD5 570a2182b30d1ebd5288335a7170ec17
BLAKE2b-256 61f8e7e8cc41368e164f4ac78b26189cc29d6cdce481f6224978194f5050bde4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taxim-1.3.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.13.2

File hashes

Hashes for taxim-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 98eb34615522c6d0a057b9c3adf7b7812329719e10cc67e19eba7685295fb833
MD5 d0bcbed5f43dceeee1bb9f336fdc0727
BLAKE2b-256 9d1ff41a1a03cd3f83ca011111cb99bcab673bf8e95d45deac616974da59e582

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