1. 07 Apr, 2015 2 commits
  2. 06 Apr, 2015 1 commit
  3. 05 Apr, 2015 3 commits
  4. 04 Apr, 2015 4 commits
  5. 03 Apr, 2015 8 commits
  6. 02 Apr, 2015 6 commits
  7. 01 Apr, 2015 6 commits
  8. 31 Mar, 2015 5 commits
    • Evgeny Agafonchikov's avatar
      Fixing help messages · 1f04f9d6
      Evgeny Agafonchikov authored
      --help message and starting run.py w/o parameters generate different messages
      
      E. g. w/ and w/o build_path in the end
      
      build_path is required, removing square brackets
      1f04f9d6
    • Maxim Kostin's avatar
      Added sample imgcodecs logic to winrt sample app · 75850a13
      Maxim Kostin authored
       - Made use imread() in OcvImageProcessing sample.
       - Added test/sample logic to verify file creation via imgcodecs.
      Signed-off-by: 's avatarMaxim Kostin <v-maxkos@microsoft.com>
      75850a13
    • Pavel Rojtberg's avatar
      - update documentation · 7c5084e3
      Pavel Rojtberg authored
          * correct the part about fixed aspect
          * improve formatting
          * add snippet markers to source
          * replace inline code by @snippet
        - do not run calibration twice when using a imageList
        - make output consistent in itself (CamelCase vs no_camel_case) as well as with old camera calibrate sample
        - respect write extrinsic/ points flags
        - set the aspectRatio value when specified
        - fix writing of calibration settings. also update grammar.
        - fix intendation and remove some size_t -> int casts by using size_t
      7c5084e3
    • Maxim Kostin's avatar
      Added support for 'imgcodecs' module: · 412a2aa4
      Maxim Kostin authored
       - Resolved GET_ENV and input type incompatibility
       - Made libjpeg compile for WINRT. So does imgcodecs module.
       - Updated .gitignore (log, tlog)
      412a2aa4
    • Roman Donchenko's avatar
      cap_libv4l.cpp depends on both libv4l 1 and 2, so search for both · 149c1c16
      Roman Donchenko authored
      How this worked before, I do not know.
      149c1c16
  9. 30 Mar, 2015 5 commits
    • Alexander Nitsch's avatar
      Fix static/shared lib detection · afd9de6f
      Alexander Nitsch authored
      The check for BUILD_SHARED_LIBS had its logic backwards. If this
      variable is not defined we must assume a build of static libs.
      afd9de6f
    • Alexander Nitsch's avatar
      66e653d2
    • Alexander Nitsch's avatar
      Fix MinGW detection on x86 · 3fff0e5b
      Alexander Nitsch authored
      Make detection of x64 using the gcc's target triplet identical
      to the one used in cmake/OpenCVDetectCXXCompiler.cmake.
      Otherwise, MinGW-w64 setups will always be treated as x64 since
      they contain "w64" as vendor key.
      3fff0e5b
    • Alexander Nitsch's avatar
      Fix MinGW architecture detection · 8f84a73b
      Alexander Nitsch authored
      Fix typo that would always lead to detection of x86 for MinGW
      builds in the OpenCVConfig.cmake file.
      8f84a73b
    • Alexander Nitsch's avatar
      Fix MinGW detection on x86 · 2e86cede
      Alexander Nitsch authored
      MinGW-w64 always uses "w64" as vendor key which the previously
      used check for "64" anywhere in the target triplet matched. This
      would lead to MinGW-w64 setups always being treated as x64.
      
      Turns out we do not even need this additional check since the
      architecture has been correctly determined earlier in this file.
      No need to do it again.
      2e86cede