Tomasz Lewicki

Results 58 comments of Tomasz Lewicki
trafficstars

Started working on this feature in c7983eada39b24c398912b355df1523b5348e0e2 (see ![feature/neopixels branch](https://github.com/tomek-l/ai-thermometer/tree/feature/neopixels)). Will add modified 3D printed enclosure that supports neopixels soon.

Hi @jjferreira ! I'm afraid there's no way of remotely executing FFC. You can increase the FFC interval in the FLIR software: https://lepton.flir.com/lepton-and-windows/

Hi! The uvc_error is likely due to the purethermal module not getting detected (which is also a UVC device). As far as the versioning goes: - OpenCV> 4.4 - pytorch...

Hi @immkapoor, Here you would change: https://github.com/tomek-l/ai-thermometer/blob/6be49fe3880a3381ed5b66a7fcbf8b74992ab476/rgb/rgb_thread.py#L24 To something like: ```python self._stream = cv2.VideoCapture("/dev/video1") ``` Where `/dev/video1` will be device handle to your USB webcam.

I implemented this project with Raspberry Pi CM V2.1 which is a CSI _(Camera Serial Interface)_ camera, which has different API than your USB camera - that's why you're getting...

That's odd. Did you remove the call to `make_imx219_capture()`? That's the line of code that initializes gstreamer pipeline.

Hi @immkapoor These two are two separate methods of creating a camera device: - `cv2.VIdeoCapture()` - `make_imx_capture()` You have to choose just one. Since you are working with a USB...

As far as the error codes go, you can look them up in [libuvc](https://github.com/groupgets/libuvc) source code. Specifically, in [libuvc.h](https://github.com/groupgets/libuvc/blob/5e866910de3f172bd5adab72baec40a066bbbe3a/include/libuvc/libuvc.h#L23) you have definitions of what each error number means.

@Lord-Lukas-1 you should give the newest version a try, it includes improved colormaps.

Hi @deantheiceman ! Sorry for getting to you so late. 1. I currently use a regular HDMI output & a simple window OpenCV based interface under X-server. 2. I did...