1. 13 Sep, 2018 1 commit
  2. 07 Sep, 2018 1 commit
  3. 23 Apr, 2018 1 commit
  4. 05 Apr, 2018 1 commit
  5. 28 Mar, 2018 1 commit
  6. 12 Feb, 2018 1 commit
  7. 03 Feb, 2018 1 commit
    • Alexander Alekhin's avatar
      ts: refactor OpenCV tests · 4a297a24
      Alexander Alekhin authored
      - removed tr1 usage (dropped in C++17)
      - moved includes of vector/map/iostream/limits into ts.hpp
      - require opencv_test + anonymous namespace (added compile check)
      - fixed norm() usage (must be from cvtest::norm for checks) and other conflict functions
      - added missing license headers
      4a297a24
  8. 28 Jun, 2017 1 commit
  9. 27 Jun, 2017 1 commit
  10. 20 Jun, 2017 1 commit
    • Maksim Shabunin's avatar
      Rewritten some tests in videoio and imgcodecs modules · 87b569d8
      Maksim Shabunin authored
      general:
      - all iterative tests have been replaced with parameterized tests
      - old-style try..catch tests have been modified to use EXPECT_/ASSERT_ gtest macros
      - added temporary files cleanup
      - modified MatComparator error message formatting
      
      imgcodecs:
      - test_grfmt.cpp split to test_jpg.cpp, test_png.cpp, test_tiff.cpp, etc.
      
      videoio:
      - added public HAVE_VIDEO_INPUT, HAVE_VIDEO_OUTPUT definitions to cvconfig.h
      - built-in MotionJPEG codec could not be tested on some platforms (read_write test was disabled if ffmpeg is off, encoding/decoding was handled by ffmpeg otherwise).
      - image-related tests moved to imgcodecs (Videoio_Image)
      - several property get/set tests have been combined into one
      - added MotionJPEG test video to opencv_extra
      87b569d8
  11. 04 Apr, 2017 1 commit
  12. 15 Mar, 2017 1 commit
  13. 18 Nov, 2016 1 commit
  14. 30 Sep, 2016 1 commit
  15. 19 Aug, 2016 1 commit
  16. 29 Oct, 2015 1 commit
  17. 20 Oct, 2015 1 commit
  18. 26 May, 2015 1 commit
    • Vicente Olivert Riera's avatar
      superres: Fix return value VideoFrameSource_GPU · e96b8ce7
      Vicente Olivert Riera authored
      superres module fails to compile with the following error messages:
      
      [100%] Building CXX object modules/superres/CMakeFiles/opencv_superres.dir/src/super_resolution.cpp.o
      /opencv-2.4.10/modules/superres/src/frame_source.cpp: In function 'cv::Ptr<cv::superres::FrameSource> cv::superres::createFrameSource_Video_GPU(const string&)':
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:16: error: expected type-specifier before 'VideoFrameSource'
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:16: error: could not convert '(int*)operator new(4ul)' from 'int*' to 'cv::Ptr<cv::superres::FrameSource>'
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:16: error: expected ';' before 'VideoFrameSource'
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:41: error: 'VideoFrameSource' was not declared in this scope
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:264:1: error: control reaches end of non-void function [-Werror=return-type]
      cc1plus: some warnings being treated as errors
      make[3]: *** [modules/superres/CMakeFiles/opencv_superres.dir/src/frame_source.cpp.o] Error 1
      make[3]: *** Waiting for unfinished jobs....
      
      This is caused because the return value of the createFrameSource_Video_GPU function should be a VideoFrameSource_GPU object.
      Conflicts:
      	modules/superres/src/frame_source.cpp
      e96b8ce7
  19. 24 May, 2015 1 commit
  20. 19 Apr, 2015 1 commit
    • Vicente Olivert Riera's avatar
      superres: Fix return value VideoFrameSource_GPU · 23bf3e33
      Vicente Olivert Riera authored
      superres module fails to compile with the following error messages:
      
      [100%] Building CXX object modules/superres/CMakeFiles/opencv_superres.dir/src/super_resolution.cpp.o
      /opencv-2.4.10/modules/superres/src/frame_source.cpp: In function 'cv::Ptr<cv::superres::FrameSource> cv::superres::createFrameSource_Video_GPU(const string&)':
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:16: error: expected type-specifier before 'VideoFrameSource'
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:16: error: could not convert '(int*)operator new(4ul)' from 'int*' to 'cv::Ptr<cv::superres::FrameSource>'
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:16: error: expected ';' before 'VideoFrameSource'
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:41: error: 'VideoFrameSource' was not declared in this scope
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:264:1: error: control reaches end of non-void function [-Werror=return-type]
      cc1plus: some warnings being treated as errors
      make[3]: *** [modules/superres/CMakeFiles/opencv_superres.dir/src/frame_source.cpp.o] Error 1
      make[3]: *** Waiting for unfinished jobs....
      
      This is caused because the return value of the createFrameSource_Video_GPU function should be a VideoFrameSource_GPU object.
      (cherry picked from commit 2e393ab8)
      23bf3e33
  21. 10 Apr, 2015 1 commit
  22. 07 Apr, 2015 1 commit
    • Vadim Pisarevsky's avatar
      1. Input/OutputArray optimizations; · 052593c7
      Vadim Pisarevsky authored
      2. Algorithm::load/save added (moved from StatModel)
      3. copyrights updated; added copyright/licensing info for ffmpeg
      4. some warnings from Xcode 6.x are fixed
      052593c7
  23. 18 Mar, 2015 1 commit
  24. 02 Mar, 2015 2 commits
  25. 17 Feb, 2015 1 commit
  26. 16 Feb, 2015 1 commit
  27. 21 Jan, 2015 1 commit
  28. 26 Dec, 2014 1 commit
  29. 23 Dec, 2014 1 commit
  30. 16 Dec, 2014 1 commit
  31. 01 Dec, 2014 2 commits
  32. 10 Nov, 2014 1 commit
    • Roman Donchenko's avatar
      Suppress a bogus -Warray-bounds in modules/superres/src/optical_flow.cpp · 13d67b6a
      Roman Donchenko authored
      This is actually the same warning that the suppression at the bottom
      suppresses, but that one doesn't suppress it when using a native compiler
      (go figure).
      
      I remove the forced inclusion of precompiled headers into all sources,
      since otherwise this workaround doesn't work - the header with the warning
      is included before I can use a pragma.
      13d67b6a
  33. 27 Oct, 2014 1 commit
    • Vicente Olivert Riera's avatar
      superres: Fix return value VideoFrameSource_GPU · 2e393ab8
      Vicente Olivert Riera authored
      superres module fails to compile with the following error messages:
      
      [100%] Building CXX object modules/superres/CMakeFiles/opencv_superres.dir/src/super_resolution.cpp.o
      /opencv-2.4.10/modules/superres/src/frame_source.cpp: In function 'cv::Ptr<cv::superres::FrameSource> cv::superres::createFrameSource_Video_GPU(const string&)':
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:16: error: expected type-specifier before 'VideoFrameSource'
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:16: error: could not convert '(int*)operator new(4ul)' from 'int*' to 'cv::Ptr<cv::superres::FrameSource>'
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:16: error: expected ';' before 'VideoFrameSource'
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:41: error: 'VideoFrameSource' was not declared in this scope
      /opencv-2.4.10/modules/superres/src/frame_source.cpp:264:1: error: control reaches end of non-void function [-Werror=return-type]
      cc1plus: some warnings being treated as errors
      make[3]: *** [modules/superres/CMakeFiles/opencv_superres.dir/src/frame_source.cpp.o] Error 1
      make[3]: *** Waiting for unfinished jobs....
      
      This is caused because the return value of the createFrameSource_Video_GPU function should be a VideoFrameSource_GPU object.
      2e393ab8
  34. 01 Oct, 2014 1 commit
  35. 25 Sep, 2014 1 commit
  36. 14 Aug, 2014 1 commit
  37. 10 Aug, 2014 1 commit
  38. 05 Aug, 2014 1 commit