1. 26 May, 2015 8 commits
    • StevenPuttemans's avatar
      fixing SVM negative value rounding · 6aedd4f7
      StevenPuttemans authored
      Conflicts:
      	modules/objdetect/src/hog.cpp
      
      fix android build
      6aedd4f7
    • 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
    • Vadim Pisarevsky's avatar
    • Vadim Pisarevsky's avatar
      dc587992
    • Vadim Pisarevsky's avatar
      for some reason Calib3d_Homography.fromImages on ARM gives much smaller number… · bb2e40b9
      Vadim Pisarevsky authored
      for some reason Calib3d_Homography.fromImages on ARM gives much smaller number of inliers than on x86/x64. Need to investigate more carefully, but let's decrease the tolerance threshold for now
      bb2e40b9
    • Vadim Pisarevsky's avatar
      b1a8e4f7
    • Vadim Pisarevsky's avatar
      fixed another compile warning from MSVC · ca1d8c17
      Vadim Pisarevsky authored
      ca1d8c17
    • Zhigang Gong's avatar
      Avoid negative index for a local buffer in Canny.cl. · 3c852009
      Zhigang Gong authored
      int pix_per_thr = l_counter / LOCAL_TOTAL + ((lid < mod) ? 1 : 0);
      The pix_per_thr * LOCAL_TOTAL may be larger than l_counter.
      Thus the index of l_stack may be negative which may cause serious
      problems. Let's skip the loop when we get negative index and we need
      to add back the lcounter to keep its balance and avoid potential
      negative counter.
      Signed-off-by: 's avatarZhigang Gong <zhigang.gong@intel.com>
      3c852009
  2. 25 May, 2015 11 commits
  3. 24 May, 2015 14 commits
  4. 23 May, 2015 7 commits