JuliaImages / OpenCV.jl

Use OpenCV in Julia!! 🚀
https://juliaimages.org/OpenCV.jl/dev/
MIT License
37 stars 14 forks source link

Organization of the source code for the wrappers #49

Open ViralBShah opened 5 days ago

ViralBShah commented 5 days ago

Currently, the way we build this package is that opencv and opencv-contrib are both recipes in the Yggdrasil repo. The code in contrib generates the wrappers for the Julia package.

It probably would be better to have the contrib stuff in this repo and generate the julia wrapper code independent of the opencv binary build. I do not know if it has dependencies on the opencv build process itself. Just thought I would leave it here.

@barche Any thoughts on this based on your recent experience?

barche commented 5 days ago

I would proceed as follows:

From what I can see most of the C++ is generated from within the OpenCV build system, so it’s easier to leave it there.