Setup environment

Installing python and requirements

Install jupyter notebook

Send our created venv to Jupyter Notebook

Start Jupyter Notebook

Generating Pointcloud from RGB-D image

Importing libs

import numpy as np
import open3d as o3d
import matplotlib
import matplotlib.pyplot as plt

Storing images

color_raw = o3d.io.read_image("../data/ex1/image_rgb.jpg")
depth_raw = o3d.io.read_image("../data/ex1/image_depth.png")