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; } 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; 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__ 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: 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); 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()) {