1

numpy と PIL を使用して画像をホワイトバランスする方法を見つけようとしています。私は IDS カメラを使用していますが、撮影したすべての画像は非常に暗くなり、画質が一定ではなく、青みがかっているように見えます。画像が完全に作成されることもあれば、これらの大きな黒いバーが画面全体に水平に走ることもあります。画像。ここに私が参照している画像があります

使用しているカメラは次のとおりです: https://en.ids-imaging.com/manuals/uEye_SDK/EN/uEye_Manual_4.93/index.html

from pyueye import ueye
import numpy as np
import sys
from PIL import Image
import cv2

hCam = ueye.HIDS(0)             
sInfo = ueye.SENSORINFO()
cInfo = ueye.CAMINFO()
pcImageMemory = ueye.c_mem_p()
MemID = ueye.int()
rectAOI = ueye.IS_RECT()
pitch = ueye.INT()
nBitsPerPixel = ueye.INT(24)   
channels = 3                    
m_nColorMode = ueye.IS_CM_RGBA12_UNPACKED #IS_CM_BGRA8_PACKED       
bytes_per_pixel = int(nBitsPerPixel / 8)

#Camera Init 
nRet = ueye.is_InitCamera(hCam, None)
if nRet != ueye.IS_SUCCESS:
    print("is_InitCamera ERROR")

#Get Sensor Info 
nRet = ueye.is_GetSensorInfo(hCam, sInfo)
if nRet != ueye.IS_SUCCESS:
    print("is_GetSensorInfo ERROR")

#Set Display Mode
nRet = ueye.is_SetDisplayMode(hCam, ueye.IS_SET_DM_DIB)

#Set Color mode 
nRet = ueye.is_SetColorMode(hCam, ueye.IS_CM_BGR8_PACKED)

#Area of Interest 
nRet = ueye.is_AOI(hCam, ueye.IS_AOI_IMAGE_GET_AOI, rectAOI, ueye.sizeof(rectAOI))
if nRet != ueye.IS_SUCCESS:
    print("is_AOI ERROR")

#Define Width and Height 
width = rectAOI.s32Width
height = rectAOI.s32Height

# Prints out some information about the camera and the sensor
print("Camera model:\t\t", sInfo.strSensorName.decode('utf-8'))
print("Camera serial no.:\t", cInfo.SerNo.decode('utf-8'))
print("Maximum image width:\t", width)
print("Maximum image height:\t", height)
print()

#Allocate Image Memory 
nRet = ueye.is_AllocImageMem(hCam, width, height, nBitsPerPixel, pcImageMemory, MemID)
if nRet != ueye.IS_SUCCESS:
    print("is_AllocImageMem ERROR")

#Add to Sequence 
nRet = ueye.is_AddToSequence(hCam , pcImageMemory ,  MemID)
if nRet != ueye.IS_SUCCESS:
    print("is_AddToSequence ERROR")

#Capture Video 
nRet = ueye.is_CaptureVideo(hCam, ueye.IS_DONT_WAIT)
if nRet != ueye.IS_SUCCESS:
    print("is_CaptureVideo ERROR")

#Inquire Image Memory 
nRet = ueye.is_InquireImageMem(hCam, pcImageMemory, MemID, width, height, nBitsPerPixel, pitch)
if nRet != ueye.IS_SUCCESS:
    print("is_InquireImageMem ERROR")

#Image Display 
array = [0]
# Continuous image display
while(nRet == ueye.IS_SUCCESS):

    nRet = ueye.is_InquireImageMem(hCam, pcImageMemory, MemID, width, height, nBitsPerPixel, pitch)
    if nRet != ueye.IS_SUCCESS:
        print("is_InquireImageMem ERROR")
    while array[0] == 0:
        array = ueye.get_data(pcImageMemory, width.value, height.value, nBitsPerPixel.value, pitch.value, copy=False)

    print(array)

    frame = np.reshape(array,(height.value, width.value, bytes_per_pixel))
    #print(frame)
    img = Image.fromarray(frame,'RGB')
    img.show()

    break

ueye.is_FreeImageMem(hCam, pcImageMemory, MemID)
ueye.is_ExitCamera(hCam)

画像の作成に使用するコードは次のとおりです。どんな助けでも素晴らしいでしょう、ありがとう!!!

4

1 に答える 1