Got stuck when integrating IR camera #60
phucvinh57
started this conversation in
Ideas
Replies: 3 comments 17 replies
|
In most laptops just opening /dev/video2 (or whatever the IR device is) just works. In some laptops this is required too: https://github.com/EmixamPP/linux-enable-ir-emitter on arch linux you can just install aur/linux-enable-ir-emitter and then it should work. |
2 replies
|
I have an Asus G16, and I can read the IR stream correctly. Have you tried running the command Also, I'm using cachyos but I think it will work on other distros. |
1 reply
|
@notherealmarco @blauer4 Thank you all for your helps. A new release has been launched https://github.com/TickLabVN/biopass/releases/tag/1.1.0. |
14 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I am going to integrate IR camera as a part of Biopass's antispoofing feature. My current device is a Lenovo ThinkPad P1 Gen 6.
In an infrared imaging system, there are usually two main components that work together like a camera and a flashlight.
The first is the IR camera, which is a specialized image sensor designed to detect light in the infrared spectrum. The second is the IR emitter, typically an infrared LED. Because the environment usually does not provide enough infrared light for a small sensor to capture a clear image, the camera depends on this built-in infrared light source.
My issue is that when I access the IR camera through v4l2, the IR emitter flashes only once and then turns off. As a result, the captured image becomes black. Based on my research, it seems that this IR camera may be hardware-restricted for use only with Windows Hello and is not exposed for general-purpose access on Linux.
Here is my camera information:
I have researched how Howdy and other similar Linux authentication tools handle IR camera integration. However, I realized that they just open the IR camera as a linux device and capture images. I do not think their IR camera integrations work in most cases.
I really need your help. Please give me some ideas and suggestions for this feature!
All reactions