
dennis
dennis
About
- Username
- dennis
- Joined
- Visits
- 7
- Last Active
- Roles
- Member
Comments
-
Hi, Maria https://www.kneron.com/forum/uploads/321/C3PRU5A6JQGV.jpg This is the figure after adjustment to AWB, and the white color seems to be OK!! I found that the reason is turning off the AWB, which affects the color of figure. Now, I use the fi…
-
Hi Maria: Thank you for the reply!! I used the code as follow to read USB: dev = usb.core.find(idVendor=0x3231, idProduct=0x0100) dev.set_configuration() data = dev.read(0x81, IMG_SIZE) img = RGB565toBGR(np.array(data)) I saw you successfully tran…
-
https://www.kneron.com/forum/uploads/752/A838CC3AEJJJ.jpg The image in PC looks like this To make sure the training effect from raw data, I turn off the AWB, AEC, gamma effects in camera driver. Is this the reason?
-
Hi Maria, Yes, my SDK version is v1.7.0 I do transfer the image as the code below: def RGB565toBGR(array): for i in range(480): for j in range(640): byte1 = (np.uint8)(array[i*640*2+j*2]) byte2 = (np.uint8)(array[i*640*2+j*2+1]) …