Diplomat

Results 55 comments of Diplomat

sorry I don't see through here completely. is it now possible to set hardlinks via rclone and gdrive? and if so how?

hey nice project, did you solve it? moreover do you pherahbs know how to set the exposure time below 1ms ( for example 0.1ms) `Traceback (most recent call last): File...

I hope you're not mad at me 6by9. I have already been able to acquire specialist knowledge from you from countless forum entries - you are a legend. kind regards...

any updates here. I would like so save 16 Bit rgb array as .exr file.. ``` rgb_array = np.zeros((760, 1016, 3), dtype=np.uint16) rgb_array[:, :, 0] = array16[1::2, 1::2] # red...

Hey guys. Do you know how the Bayer colorfilter is aligned? I looked up the doc of the IMX477 but still not sure. If you know, please response! ![image](https://user-images.githubusercontent.com/58213050/198902412-2b8f3849-82cd-48ce-b972-ed975f71548f.png)

I work with bayer pattern images. I need to know which color the first Pixel in the captured array has..

thanks for your help Alec, what would you say if you read the code, what color is the first pixel (1,1)? &does this also apply to the imx477 (HQ Cam)?

Thanks for reply. I use the following: ``` picam2 = Picamera2() config = picam2.create_still_configuration(raw={"format": "SRGGB12", "size" : (2032, 1520)}, buffer_count=2) picam2.configure(config) picam2.set_controls({"ExposureTime": 560, "AnalogueGain": 1, "ColourGains": (1.0,1.0)}) picam2.start() array =...