Christopher N. Hesse
Christopher N. Hesse
I cannot really support Windows (apart from trying to keep the libuvc backend alive). Someone else would need to step up to test & fix bugs on Windows.
@hadhoryth I assume you are on Linux, thus using the `v4l` platform backend, is that correct? The backend invokes `set_format()` here: https://github.com/raymanfx/eye-rs/blob/master/eye-hal/src/platform/v4l2/device.rs#L196. This boils down to the implementation in `v4l-rs`...
Same issue here on Fedora 29.
Hi, I just (finally) got around to giving this project some love and published `eye-hal 0.2.0` on crates.io. Please check that release - I verified it on my MacBook Pro...
Closing as there was no feedback and it works for me on Sonoma 14.2.1.
I evaluated adding YUV support to this crate, but found that its internal architecture is too inflexible. Adding a new format requires touching many internal structures (cannot be done in...
I think me and @tylerhawkes first and foremost want to convert the buffer into something we can render easily (which will be RGB888 most of the time). For YUY2 this...
> I also need it to convert YUYV to RGB. Most cheap v4l2 devices support YUYV, while not supporting anything else. Here's an example of doing that using `ffimage v0.10.0`...
> Little workaround in https://github.com/raymanfx/libv4l-rs/compare/control-type-unknown, thoughts? We could alternatively also turn the `impl From for Description` conversion where this panic is happening into a `TryFrom`? Sounds fine to me. Would...
> @raymanfx which of the two approaches quoted there sound fine to you? The branch is technically breaking due to layout changes in `Type`, not to mention trait changes. I...