Skip to content

Related software

David Cardinal edited this page Sep 15, 2024 · 12 revisions

We view ISETCam (or ISETBio) as fundamental repositories, essential the base library. We are developing software that relies on ISETCam but that is specialized for different objectives. Below is a list of these repositories and their objectives.

Related ISET repositories

  • ISET3D is under active development for creating quantitative computer graphics scene and optical image representations. Feel free to ask for help - we sometimes prioritize based on these requests.
  • ISET3D-tiny is under active development for creating quantitative computer graphics scene and optical image representations. It is planned to be used with ISEThdrsensor in particular.
  • ISETBio - A large collaborative project focused on human visual system simulation
  • ISETHyperspectral - Methods for managing hyperspectral data, used to build the hyper- and multi-spectral databases
  • ISETFluorescence - Modeling fluorescent materials, particularly for biological applications
  • ISETHDRSensor - Exploring HDR scene creation and sensor designs (nighttime driving especially)

Python in Matlab

In some cases we require Python. For example, these have been used for HDR simulations isethdrsensor, We recommend using the miniconda installation methods to create virtual environments. Here are some installation suggestions

Creating a Python environment from a mac terminal

Download the miniconda installer. There is both an Apple Silicon version and an Intel version. Here is the link to the Miniconda installer

After installation, I updated conda using this command

conda update -n base -c defaults conda

I then created a py39 version using the conda command

conda create -n py39 python=3.9

I then activated the environment with this version of python

conda activate py39

We then have a py39 environment activated as a python environment, which you can see in the terminal window (zsh).

Clone this wiki locally