We can adjust the colourtemperature, but found even the value range from 0 to 5000, there only few step (just shift to blue or red) changes on photo. Is it normal ?
Also, we are preview 2 colour cameras, is this code setting on both camera ?
-# Defaults and limits for manual focus/exposure controls
expTime = 40000
sensIso = 200
wbManual = 3600
contrast = 0
sharpness = 1
luma_denoise = 1
chroma_denoise = 0
control = 'none'
jet_custom = cv2.applyColorMap(
np.arange(256, dtype=np.uint8), cv2.COLORMAP_JET)
jet_custom[0] = [0, 0, 0]
# Default Settings
ctrl = dai.CameraControl()
# set Exposure time and iso:
ctrl.setManualExposure(expTime, sensIso)
# set white balance
ctrl.setManualWhiteBalance(wbManual)
# set sharpness, contrast, luma denoise and chroma denoise
ctrl.setSharpness(sharpness)
ctrl.setContrast(contrast)
ctrl.setLumaDenoise(luma_denoise)
ctrl.setChromaDenoise(chroma_denoise)
controlQueue.send(ctrl)
---