1. 04 Nov, 2018 1 commit
  2. 25 Oct, 2018 1 commit
    • Henry's avatar
      Update intro.markdown · 4102855e
      Henry authored
      "as opposed to" is a phrase of opposed meaning distinguished from or in contrast with. e.g., "an approach that is theoretical as opposed to practical"
      synonyms: in contrast with, as against, as contrasted with, rather than, instead of, as an alternative to
      example: "we use only steam, as opposed to chemical products, to clean our house"
      4102855e
  3. 31 May, 2018 1 commit
  4. 09 Sep, 2016 1 commit
  5. 12 Jul, 2016 2 commits
  6. 15 Oct, 2015 1 commit
  7. 13 Oct, 2015 1 commit
  8. 06 Aug, 2015 1 commit
  9. 02 Jun, 2015 1 commit
    • Diogo Rolo's avatar
      Update cuda.markdown · f57fb237
      Diogo Rolo authored
      Small typo fix in the documentation.
      It was written 'devie' instead of 'device' in: 'Switching active device can be done using cuda::setDevice() function'
      f57fb237
  10. 23 May, 2015 1 commit
  11. 22 Jan, 2015 1 commit
  12. 26 Dec, 2014 1 commit
  13. 15 Dec, 2014 2 commits
  14. 03 Dec, 2014 1 commit
  15. 18 Nov, 2014 1 commit
    • Maksim Shabunin's avatar
      Documenting imgproc module · 555fdf89
      Maksim Shabunin authored
      - disabled doxygen tree
      - enabled doxygen enum listing
      - added imgproc reference to main page
      - enabled BiB support
      - chenged doxygen root page format
      555fdf89
  16. 12 Nov, 2014 1 commit
  17. 18 Oct, 2014 1 commit
    • Alexander Duda's avatar
      fix warning in template Scalar::mul gcc < 4.8 · 11ebaf67
      Alexander Duda authored
      In this particular case t shadows transpose of the base class Matx:
      types.hpp:1805:14: warning: declaration of ‘t’ shadows a member of
      'this' [-Wshadow]
      
      Changelog gcc 4.8: The option -Wshadow no longer warns if a declaration
      shadows a function declaration.
      
      This warning is problematic because it prevents the module
      opencv_contrib/modules/ruby to pass the build process
      11ebaf67
  18. 09 Oct, 2014 1 commit
  19. 02 Oct, 2014 2 commits
  20. 22 Sep, 2014 1 commit
  21. 09 Sep, 2014 1 commit
  22. 28 Aug, 2014 1 commit
    • StevenPuttemans's avatar
      continue fixing nonfree elements · d27e440b
      StevenPuttemans authored
      fixed dependency of stitching module on xfeatures2d module as optional
      fixed the initModule_xfeatures2d function that was called in module stitching since it is in another namespace than the standard cv one.
      d27e440b
  23. 14 Aug, 2014 3 commits
  24. 11 Aug, 2014 2 commits
  25. 02 Aug, 2014 1 commit
  26. 18 Jul, 2014 1 commit
  27. 15 Jul, 2014 1 commit
  28. 14 Jul, 2014 1 commit
  29. 12 Jul, 2014 1 commit
  30. 09 Jul, 2014 1 commit
  31. 24 Jun, 2014 1 commit
  32. 02 Jun, 2014 1 commit
  33. 22 May, 2014 1 commit
  34. 18 May, 2014 1 commit
    • Kazuki Matsuda's avatar
      Implimentation "cv::Mat::forEach" · fa292c3d
      Kazuki Matsuda authored
      I propose forEach method for cv::Mat and cv::Mat_.
      This is solution for the overhead of MatIterator_<_Tp>.
      
      I runs a test that micro opecode runs all over the pixel of cv::Mat_<cv::Point3_<uint8_t>>.
      And this implementation 40% faster than the simple pointer, 80% faster than iterator.
      With OpenMP, 70% faster than simple pointer, 95% faster than iterator (Core i7 920).
      
      Above all, code is more readable.
      
      My test code is here.
          https://gist.github.com/kazuki-ma/8285876
      
      Thanks.
      fa292c3d