Results 13 comments of Alex Mao

hi all, I know many people are struggle with raspberrypi usage. please consider use my webcam-capture-driver-raspberrypi/RaspividDriver and RaspividYUVDriver. it is very good in performance. because camera is consuming GPU and...

It is very simple, just follow https://github.com/sarxos/webcam-capture/tree/master/webcam-capture-drivers/driver-raspberrypi readme to begin. the key statements is: > static { > Webcam.setDriver(new RaspiYUVDriver()); > } before above code, there is another problem that...

it happens here: ` public WebcamPanel(Webcam webcam, Dimension size, boolean start, ImageSupplier supplier) { if (webcam == null) { throw new IllegalArgumentException(String.format("Webcam argument in %s constructor cannot be null!", getClass().getSimpleName()));...

it happens: public WebcamPanel(Webcam webcam, Dimension size, boolean start, ImageSupplier supplier) { if (webcam == null) { throw new IllegalArgumentException(String.format("Webcam argument in %s constructor cannot be null!", getClass().getSimpleName())); } this.defaultSize...

Hi @MegaBloopy , ``` Caused by: java.lang.RuntimeException: Failed to register class com.github.sarxos.webcam.ds.buildin.natives.OpenIMAJGrabber at org.bridj.BridJ.register(BridJ.java:194) ~[?:?] ``` Please check if native binary, i.e. dll or so lib are packed or is...

this lib is used to grab Java bufferred image from vedio source.rather than vedio encoder/decoder发自我的华为手机-------- 原始邮件 --------主题:[sarxos/webcam-capture] How can I capture and save a video (image+audio) from webcam? (#736)发件人:JOÃO WERTHER...

Hi @farshidmh, I am not sure what is your OS, linux x86 arm? it looks OpenIMAJ precompiled native. i.e. JNI is not supporred by your OS. natives are not resolved....

Hi @farshidmh, The biggest challenge is reproduce the issue. For windows, openIMAG definitely supported, besides windows, linux, arm, armhf...are supported. "Caused by: java.lang.NoClassDefFoundError: Could not initialize class" no means class...

hi Kuaikuaikim, The buit-in dirver does not support aarch64 caused by limitation of bridj and imag native resources. You can try opencv driver, not much effort can run up aarch64....