twistedfall

Results 193 comments of twistedfall

From my testing it looks like the particular culprit is `-Clink-dead-code`, not the `-Zprofile` by itself and there is an open bugreport regarding very similar issue: https://github.com/rust-lang/rust/issues/64685 Looks like you...

Yes, please! That can still be helpful in tracking down this issue

This shouldn't be happening any more in v0.84.0, the usage of `ocvrs_ephemeral.hpp` was removed completely

That's really weird, `cvt_color` should keep the source image completely unchanged. Is this the actual code you're using or is it the trimmed down version? I can't imagine this specific...

In this second snippet if you could show all 3 images: `img`, `img_clone` and `img_rgb`, are they all ok? Generally saying the broken image that you initially posted does really...

You're saying that image is coming from some external source and when you read the same image from the disk you can't reproduce the problem, right? If so, it looks...

The `cv-bridge-rs` crate uses the unsafe function `new_rows_cols_with_data()` to create a `Mat` in `as_cvmat()`: https://github.com/OmkarKabadagi5823/cv-bridge-rs/blob/main/src/cv_image.rs#LL198C17-L198C17 This makes the resulting `Mat` a reference to the data contained in `CvImage`. As soon...

Not at the moment unfortunately. Linking is the main problem indeed.

Hi, this should now be fixed in v0.76.0, the bindings are no longer generated under `src/`, but in the output directory instead.

In CI I install llvm from choco even when testing OpenCV from vcpkg. Also I only build release libs. That cuts down the compilation time and size considerably. There is...