Я пытаюсь получить цветные изображения (без разницы в rgb или bgr в моем случае) с камеры flea3 (с кодом «FL3-U3-32S2C-CS», которая показывает цветную камеру), но мой код генерирует оттенки серого фотографии ... что не так в следующем фрагменте кода? есть идеи?
# Begin acquiring images
cam.BeginAcquisition()
# Retrieve next image and convert it
image_result = cam.GetNextImage()
img_converted = image_result.Convert(PySpin.PixelFormat_RGB8, PySpin.HQ_LINEAR)
# Convert the Image object to RGB array
width = image_result.GetWidth()
height = image_result.GetHeight()
rgb_array = img_converted.GetData()
rgb_array = rgb_array.reshape(height, width, 3)