IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
Encaspulation of typical camera functionality.
Install the following dependencies from the source, where the installation guide is provided in their respective repository.
python -m camera.d435.testing.tabletop_plane
This testing file uses a 3d visualization package mayavi
, which is for helping some undergrads understand the algorithm in a course. If you use the python 3.7 environment and want to run this file, please install the dependency first:
The test file visualize the extracted tabletop plane point cloud in the camera frame, which is a necessary step for the height estimation. You can skip that testing file and run python -m camera.d435.testing.height
directly.
Use the default python for your system. Here we go through an installation for Python 3.7.
Verify the installation:
Verify the installation:
Change the default python3 version pip3 version (optional)
Up until now every thing you run should be in the form of below **(include the commands in the install section above)**. Because if your system have multiple python versions, the python3
or pip3
command might not be linked to the one you want.
We can optionally create the symlink pip3
and python3
for our desired version so that you can use the following command instead:
One way to do it is to use the update-alternatives
command (change the python version in the first two lines accordingly, and similar for the pip) :
Alternatively, we can create an virtual environment using the venv or the Anaconda for the desired python version to avoid the this step.