Bart Janssens

Results 264 comments of Bart Janssens

Yes, contributions to add more STL support are most welcome!

I think you need to define `JLCXX_USE_TYPE_MAP` in that case. Note that both using a map with `std::type_index` and using static variables in templated classes are workarounds that rely on...

I don't think there's anything more at the level of libcxxwrap-julia that can be done about this.

Interesting idea, I admit I have never fully explored the ability to dynamically adapt the wrapped code, it indeed doesn't work at the moment.

It looks like the actual Julia wrappers are in opencv_contrib, which like OpenCV itself has a tag for version 4.9.0. Unfortunately the code in the Julia module is 3 years...

> Now: **where** should this wrapper be "fixed"? In the OpenCV main repository? Meaning a PR to the OpenCV community? And what about the `libcxxwrap `library? How to coordinate these...

Getting this to work for Julia 1.10 may actually be easier than I initially thought, all that is needed is to modify `bundled/patches/opencv-julia.patch` to replace ```julia @wrapmodule(OpenCV_jll.libopencv_julia_path, :cv_wrap) ``` with...

I added some changes that will hopefully make this build against the latest libcxxwrap-julia

Before upstreaming the opencv_contrib changes I'd like to see what can be changed in libcxxwrap-julia, since some of the changes (e.g. the `container_has_less_than_operator` specializations) are only needed because of a...

The binaries are not working because the OpenCV build system adds the flags `-fvisibility=hidden -fvisibility-inlines-hidden` to the compilation. I don't immediately see where, so clues welcome :)