Are there any guidelines on creating new modules in opencv_contrib?
I am trying to port my standalone project to a contrib module.
Most modules in contrib have a description and ocv_define_module(module_name [list of opencv modules used])
, however I am met with various errors such as "Exporting the target is not allowed since its linker
language cannot be determined" (normally fixed by project(NAME C CXX)
). How is this dealt with when contributing to opencv?