From b91ca6a73f1091525e6f99dfe39295aea5d00bb3 Mon Sep 17 00:00:00 2001 From: Vsevolod Glumov Date: Fri, 12 Oct 2012 14:15:30 +0400 Subject: [PATCH 1/6] Removed the phrase, that was causing all the confusion. Issue #2406. + Some minor formatting fixes. --- .../highgui/doc/reading_and_writing_images_and_video.rst | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/modules/highgui/doc/reading_and_writing_images_and_video.rst b/modules/highgui/doc/reading_and_writing_images_and_video.rst index 7ac310011..d4b2a1f73 100644 --- a/modules/highgui/doc/reading_and_writing_images_and_video.rst +++ b/modules/highgui/doc/reading_and_writing_images_and_video.rst @@ -4,7 +4,7 @@ Reading and Writing Images and Video .. highlight:: cpp imdecode ------------- +-------- Reads an image from a buffer in memory. .. ocv:function:: Mat imdecode( InputArray buf, int flags ) @@ -32,7 +32,7 @@ See .. note:: In the case of color images, the decoded images will have the channels stored in ``B G R`` order. imencode ------------- +-------- Encodes an image into a memory buffer. .. ocv:function:: bool imencode( const string& ext, InputArray img, vector& buf, const vector& params=vector()) @@ -56,7 +56,7 @@ See .. note:: ``cvEncodeImage`` returns single-row matrix of type ``CV_8UC1`` that contains encoded image as array of bytes. imread ----------- +------ Loads an image from a file. .. ocv:function:: Mat imread( const string& filename, int flags=1 ) @@ -85,7 +85,8 @@ Loads an image from a file. * **=0** Return a grayscale image - * **<0** Return the loaded image as is. Note that in the current implementation the alpha channel, if any, is stripped from the output image. For example, a 4-channel RGBA image is loaded as RGB if :math:`flags\ge0` . + * **<0** Return the loaded image as is. + .. note:: In the current implementation the alpha channel, if any, is stripped from the output image. The function ``imread`` loads an image from the specified file and returns it. If the image cannot be read (because of missing file, improper permissions, unsupported or invalid format), the function returns an empty matrix ( ``Mat::data==NULL`` ). Currently, the following file formats are supported: From 5dd1ec98f72e0afff402a713c159c4da8cdd7faf Mon Sep 17 00:00:00 2001 From: Evgeny Talanin Date: Fri, 12 Oct 2012 14:25:36 +0400 Subject: [PATCH 2/6] #720 patch apply --- modules/highgui/src/cap_libv4l.cpp | 2 +- modules/highgui/src/cap_v4l.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/highgui/src/cap_libv4l.cpp b/modules/highgui/src/cap_libv4l.cpp index 6dcc567ca..b1be7f2e8 100644 --- a/modules/highgui/src/cap_libv4l.cpp +++ b/modules/highgui/src/cap_libv4l.cpp @@ -1111,7 +1111,7 @@ static void mainloop_v4l2(CvCaptureCAM_V4L* capture) { FD_SET (capture->deviceHandle, &fds); /* Timeout. */ - tv.tv_sec = 2; + tv.tv_sec = 10; tv.tv_usec = 0; r = select (capture->deviceHandle+1, &fds, NULL, NULL, &tv); diff --git a/modules/highgui/src/cap_v4l.cpp b/modules/highgui/src/cap_v4l.cpp index 619870fd9..f8f6a895f 100644 --- a/modules/highgui/src/cap_v4l.cpp +++ b/modules/highgui/src/cap_v4l.cpp @@ -1229,7 +1229,7 @@ static void mainloop_v4l2(CvCaptureCAM_V4L* capture) { FD_SET (capture->deviceHandle, &fds); /* Timeout. */ - tv.tv_sec = 2; + tv.tv_sec = 10; tv.tv_usec = 0; r = select (capture->deviceHandle+1, &fds, NULL, NULL, &tv); From 4500c48349116f030e275f62d40d720f03adf50b Mon Sep 17 00:00:00 2001 From: Daniil Osokin Date: Fri, 12 Oct 2012 14:38:37 +0400 Subject: [PATCH 3/6] fixed 7 point mode in findFundamentalMat #1978 --- modules/calib3d/src/fundam.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/calib3d/src/fundam.cpp b/modules/calib3d/src/fundam.cpp index 151543373..c79046d15 100644 --- a/modules/calib3d/src/fundam.cpp +++ b/modules/calib3d/src/fundam.cpp @@ -1102,7 +1102,7 @@ cv::Mat cv::findFundamentalMat( InputArray _points1, InputArray _points2, CV_Assert( npoints >= 0 && points2.checkVector(2) == npoints && points1.type() == points2.type()); - Mat F(3, 3, CV_64F); + Mat F(method == CV_FM_7POINT ? 9 : 3, 3, CV_64F); CvMat _pt1 = points1, _pt2 = points2; CvMat matF = F, c_mask, *p_mask = 0; if( _mask.needed() ) @@ -1113,6 +1113,8 @@ cv::Mat cv::findFundamentalMat( InputArray _points1, InputArray _points2, int n = cvFindFundamentalMat( &_pt1, &_pt2, &matF, method, param1, param2, p_mask ); if( n <= 0 ) F = Scalar(0); + if( n == 1 ) + F = F.rowRange(0, 3); return F; } From 800cb9d0e63dce4b5815be12b95c39b91ed5a3ce Mon Sep 17 00:00:00 2001 From: "marina.kolpakova" Date: Fri, 12 Oct 2012 14:32:47 +0400 Subject: [PATCH 4/6] allow gpu module write sanity data for GPU and CPU tests in one xml --- modules/ts/include/opencv2/ts/ts_perf.hpp | 1 + modules/ts/src/ts_perf.cpp | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/modules/ts/include/opencv2/ts/ts_perf.hpp b/modules/ts/include/opencv2/ts/ts_perf.hpp index e5023150f..22538ef3a 100644 --- a/modules/ts/include/opencv2/ts/ts_perf.hpp +++ b/modules/ts/include/opencv2/ts/ts_perf.hpp @@ -187,6 +187,7 @@ private: cv::FileStorage storageOut; cv::FileNode rootIn; std::string currentTestNodeName; + std::string suiteName; cv::FileStorage& write(); diff --git a/modules/ts/src/ts_perf.cpp b/modules/ts/src/ts_perf.cpp index 817b75447..e5158b636 100644 --- a/modules/ts/src/ts_perf.cpp +++ b/modules/ts/src/ts_perf.cpp @@ -184,6 +184,8 @@ void Regression::init(const std::string& testSuitName, const std::string& ext) storageOutPath = testSuitName; } + suiteName = testSuitName; + try { if (storageIn.open(storageInPath, cv::FileStorage::READ)) @@ -562,6 +564,12 @@ Regression& Regression::operator() (const std::string& name, cv::InputArray arra std::string nodename = getCurrentTestNodeName(); +#ifdef HAVE_CUDA + static const std::string prefix = (param_run_cpu)? "CPU_" : "GPU_"; + if(suiteName == "gpu") + nodename = prefix + nodename; +#endif + cv::FileNode n = rootIn[nodename]; if(n.isNone()) { From 8d7ac8ad19ec8b589662aa9d3af90026ed33fe1b Mon Sep 17 00:00:00 2001 From: "marina.kolpakova" Date: Fri, 12 Oct 2012 14:33:19 +0400 Subject: [PATCH 5/6] minor ending fix --- modules/core/perf/perf_merge.cpp | 2 +- modules/core/perf/perf_split.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/core/perf/perf_merge.cpp b/modules/core/perf/perf_merge.cpp index 302b9b2e5..7efa6e24e 100644 --- a/modules/core/perf/perf_merge.cpp +++ b/modules/core/perf/perf_merge.cpp @@ -28,7 +28,7 @@ PERF_TEST_P( Size_SrcDepth_DstChannels, merge, mv.push_back( Mat(sz, CV_MAKETYPE(srcDepth, 1)) ); randu(mv[i], 0, 255); } - + Mat dst; TEST_CYCLE() merge( (vector &)mv, dst ); diff --git a/modules/core/perf/perf_split.cpp b/modules/core/perf/perf_split.cpp index ea4e5ab79..d554eadf9 100644 --- a/modules/core/perf/perf_split.cpp +++ b/modules/core/perf/perf_split.cpp @@ -22,7 +22,7 @@ PERF_TEST_P( Size_Depth_Channels, split, int depth = get<1>(GetParam()); int channels = get<2>(GetParam()); - Mat m(sz, CV_MAKETYPE(depth, channels)); + Mat m(sz, CV_MAKETYPE(depth, channels)); randu(m, 0, 255); vector mv; From 319e861cf2e6117c74459ad27dc53ea33aaf6e76 Mon Sep 17 00:00:00 2001 From: "marina.kolpakova" Date: Fri, 12 Oct 2012 14:34:10 +0400 Subject: [PATCH 6/6] FAIL_NO_CPU marco --- modules/gpu/perf/utility.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/gpu/perf/utility.hpp b/modules/gpu/perf/utility.hpp index 6a0fbb092..814312fca 100644 --- a/modules/gpu/perf/utility.hpp +++ b/modules/gpu/perf/utility.hpp @@ -79,4 +79,6 @@ DEF_PARAM_TEST(Sz_Depth_Cn, cv::Size, MatDepth, MatCn); ::perf::Regression::add(this, std::string(#dmat) + "-response-row", __response, ## __VA_ARGS__); \ } while(0) +#define FAIL_NO_CPU() FAIL() << "No such CPU implementation analogy" + #endif // __OPENCV_PERF_GPU_UTILITY_HPP__