Как получить цветное изображение с точечно-серой камеры со Spinnaker в питоне? - PullRequest
0 голосов
/ 06 ноября 2018

Я пытаюсь получить цветные изображения (без разницы в 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)

Ответы [ 2 ]

0 голосов
/ 05 декабря 2018

Вот как это должно быть сделано:

### Set Pixel Format to RGB8 ###
node_pixel_format = 
PySpin.CEnumerationPtr(nodemap.GetNode('PixelFormat'))

if not PySpin.IsAvailable(node_pixel_format) or not PySpn.IsWritable(node_pixel_format):
   print('Unable to set Pixel Format to RGB8 (enum retrieval). Aborting...')
node_pixel_format_RGB8 = node_pixel_format.GetEntryByName('RGB8')
if not PySpin.IsAvailable(node_pixel_format_RGB8) or not PySpin.IsReadable(node_pixel_format_RGB8):
   print('Unable to set Pixel Format to RGB8 (entry retrieval). Aborting...')

pixel_format_RGB8 = node_pixel_format_RGB8.GetValue()
node_pixel_format.SetIntValue(pixel_format_RGB8)
0 голосов
/ 28 ноября 2018

У меня была такая же проблема, но с камерой Blackfly S через USB. Мне пришлось использовать определенный формат, чтобы заставить его работать. Я также установил формат пикселей на камере перед съемкой.

cam.PixelFormat.SetValue(PySpin.PixelFormat_BGR8)
cam.BeginAcquisition()
image_result = cam.GetNextImage()
image_converted = image_result.Convert(PySpin.PixelFormat_BGR8)
#  Convert the Image object to RGB array
width = image_result.GetWidth()
height = image_result.GetHeight()
rgb_array = image_converted.GetData()
rgb_array = rgb_array.reshape(height, width, 3)
...