mirror of
https://github.com/opencv/opencv.git
synced 2026-09-13 05:42:51 -05:00
Merge pull request #12248 from hrnr:video_remove_ransac
* video: remove duplicate RANSAC code * remove RANSAC code video module. The module now uses RANSAC estimators from calib3d. * deprecate estimateRigidTransform * replace internal usage of deprecated estimateRigidTransform * remove from wrappers * replace usage in shape module. shape module now links to calib3d instead of video module. * reprecate also C API version * remove cvEstimateRigidTransform * supress deprecated warnings in estimateRigidTransform test * the function is now deprecated
This commit is contained in:
committed by
Alexander Alekhin
parent
7d4bb9428b
commit
49283ec035
@@ -42,6 +42,15 @@
|
||||
|
||||
#include "test_precomp.hpp"
|
||||
|
||||
// this is test for a deprecated function. let's ignore deprecated warnings in this file
|
||||
#if defined(__clang__)
|
||||
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
||||
#elif defined(__GNUC__)
|
||||
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
||||
#elif defined(_MSC_VER)
|
||||
#pragma warning( disable : 4996)
|
||||
#endif
|
||||
|
||||
namespace opencv_test { namespace {
|
||||
|
||||
class CV_RigidTransform_Test : public cvtest::BaseTest
|
||||
|
||||
Reference in New Issue
Block a user