Soikie

Results 6 comments of Soikie

when i use following code , it works, ``` d = dxcam.create(device_idx=0, output_idx=0) img = d.grab() Image.fromarray(img).show() ``` but this code go wrong ``` import dxcam camera = dxcam.create() from...

following code,i run this code ,the non is 22383, this mean every 23 pic just have 1 valid pic ,i think you should add a judge ,when the `grab` return...

when i use your `start` func , it raise `OSError: [WinError 87]`,i find the error is caused by fowllowing code in your timer.py. the `res == 0` ``` def set_periodic_timer(handle,...

> > but this code go wrong > > ``` > > import dxcam > > camera = dxcam.create() > > from PIL import Image > > Image.fromarray(frame).show() > >...

> you can try this ``` d = dxcam.create(device_idx=0, output_idx=0) img = d.grab() Image.fromarray(img).show() ```

> Sadly still blank. It seems that it is only picking up a single device and output. you can try this code ``` import dxcam import numpy as np from...