sam

Results 11 comments of sam

Many thanks for your prompt reply and for the roadmap... totally agree and definitely did not intend to stoke a debate.

Yes that is correct this is related to issue #489. No rush and thanks for your attention.. Happy to help where I can be useful.

anyone have and further insights on this?

Brilliant.. yep that did the trick. I've updated my pull request but maybe it's better as an example in case someone else has the same issue.

Great question, I would really like to use this library but I too am struggling with the capture buffer conversion to an image format I can work with. The ffimage...

I think I have figured it out: ``` use image::{ImageBuffer}; use v4l::buffer::Type; use v4l::io::traits::CaptureStream; use v4l::prelude::*; use v4l::video::Capture; use ffimage_yuv::yuv422::Yuv422; use ffimage_yuv::yuv::Yuv; use ffimage::color::Rgb; use ffimage::iter::{BytesExt, ColorConvertExt, PixelsExt}; // in...

@raymanfx many thanks. This works for one of my cameras but my other camerahas a format that is Y16 (grayscale)? Seems it also supports Yu12 (YUV4:2:0) and NV12 (Y/CbCr 4:2:0)...

Brilliant thank you @raymanfx . I was able to get it working wit the following snippet (replacing the critical section in the code above) ``` let rgb: Vec = Yuv420p::pack(&buf,...

I am struggling with the same issue. @zegroz the links you provided no longer seem available. I am trying to just read the last N lines from a containers log...