julia.hpp 921 B

123456789101112131415161718192021222324252627282930313233343536
  1. // This file is part of OpenCV project.
  2. // It is subject to the license terms in the LICENSE file found in the top-level directory
  3. // of this distribution and at http://opencv.org/license.html
  4. // Copyright (C) 2020 by Archit Rungta
  5. #ifndef OPENCV_JULIA_HPP
  6. #define OPENCV_JULIA_HPP
  7. #include "opencv2/core.hpp"
  8. /**
  9. @defgroup julia Julia bindings for OpenCV
  10. Julia (https://julialang.org) is a programming language for scientific community with growing popularity.
  11. These are bindings for a subset of OpenCV functionality, based on libcxxwrap-julia and CxxWrap packages.
  12. For installation instructions, see README.md in this module or OpenCV wiki (https://github.com/opencv/opencv/wiki)
  13. */
  14. namespace cv
  15. {
  16. namespace julia
  17. {
  18. //! @addtogroup julia
  19. //! @{
  20. // initializes Julia bindings module
  21. CV_WRAP void initJulia(int argc, char **argv);
  22. //! @} julia
  23. } // namespace julia
  24. } // namespace cv
  25. #endif