Archit Rungta
Archit Rungta
While trying to map the OpenCV Point type to a corresponding type on Julia a lot of boiler-plate code is required along with changes to array.hpp. I was hoping this...
It seems that constants belonging to anonymous enums can not added ``` enum {a,b,c,d}; JLCXX_MODULE test(jlcxx::Module &mod) { mod.set_const("a", a); mod.set_const("b", b); mod.set_const("c", c); mod.set_const("d", d); } ``` This fails...
Hi I have been trying to understand this repo and I must say it looks very interesting. My specific queries are about what kind of guarantees does this protocol make?...
I was tracking the cause behind a memory leak related to a CxxWrap based project. https://stackoverflow.com/questions/64978891/how-do-i-fix-a-julia-opencv-cxx-memory-leak-in-image-capturing It seems that Julia's garbage collector does not realize the actual size of objects...
##### System information (version) - OpenCV => 4.4 - Operating System / Platform => Ubuntu 18.04 - Compiler => G++ ##### Detailed description Tracking issue based on question at https://stackoverflow.com/questions/64978891/how-do-i-fix-a-julia-opencv-cxx-memory-leak-in-image-capturing...