- Edited
Here are some pictures. I want to use this on surfaces that do reflect light, for example a white cup.


This is the code I am using
from depthai_sdk import OakCamera
with OakCamera() as oak:
color = oak.camera('color')
stereo = oak.create_stereo('800p', fps=60)
stereo.config_stereo(align=color)
stereo.set_ir(dot_projector_brightness=0)
pcl = oak.create_pointcloud(stereo=stereo, colorize=color)
oak.visualize(pcl, visualizer='depthai-viewer')
oak.start(blocking=True)