Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
d9f159a5
Commit
d9f159a5
authored
Dec 22, 2014
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3513 from mshabunin:compat-30
parents
c0005fd2
c485aee4
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
37 additions
and
1 deletion
+37
-1
calib3d.hpp
modules/calib3d/include/opencv2/calib3d.hpp
+4
-0
cvdef.h
modules/core/include/opencv2/core/cvdef.h
+4
-0
cvstd.hpp
modules/core/include/opencv2/core/cvstd.hpp
+4
-1
utility.hpp
modules/core/include/opencv2/core/utility.hpp
+4
-0
highgui.hpp
modules/highgui/include/opencv2/highgui.hpp
+5
-0
imgproc.hpp
modules/imgproc/include/opencv2/imgproc.hpp
+4
-0
objdetect.hpp
modules/objdetect/include/opencv2/objdetect.hpp
+4
-0
photo.hpp
modules/photo/include/opencv2/photo.hpp
+4
-0
video.hpp
modules/video/include/opencv2/video.hpp
+4
-0
No files found.
modules/calib3d/include/opencv2/calib3d.hpp
View file @
d9f159a5
...
...
@@ -1854,4 +1854,8 @@ namespace fisheye
}
// cv
#ifndef DISABLE_OPENCV_24_COMPATIBILITY
#include "opencv2/calib3d/calib3d_c.h"
#endif
#endif
modules/core/include/opencv2/core/cvdef.h
View file @
d9f159a5
...
...
@@ -73,6 +73,10 @@
# define CV_ENABLE_UNROLLED 1
#endif
#ifdef __OPENCV_BUILD
# define DISABLE_OPENCV_24_COMPATIBILITY
#endif
#if (defined WIN32 || defined _WIN32 || defined WINCE || defined __CYGWIN__) && defined CVAPI_EXPORTS
# define CV_EXPORTS __declspec(dllexport)
#elif defined __GNUC__ && __GNUC__ >= 4
...
...
modules/core/include/opencv2/core/cvstd.hpp
View file @
d9f159a5
...
...
@@ -303,7 +303,10 @@ struct Ptr
@note It is often easier to use makePtr instead.
*/
template
<
typename
Y
>
explicit
Ptr
(
Y
*
p
);
#ifdef DISABLE_OPENCV_24_COMPATIBILITY
explicit
#endif
Ptr
(
Y
*
p
);
/** @overload
@param d Deleter to use for the owned pointer.
...
...
modules/core/include/opencv2/core/utility.hpp
View file @
d9f159a5
...
...
@@ -746,4 +746,8 @@ template<> inline std::string CommandLineParser::get<std::string>(const String&
}
//namespace cv
#ifndef DISABLE_OPENCV_24_COMPATIBILITY
#include "opencv2/core/core_c.h"
#endif
#endif //__OPENCV_CORE_UTILITY_H__
modules/highgui/include/opencv2/highgui.hpp
View file @
d9f159a5
...
...
@@ -692,4 +692,9 @@ CV_EXPORTS int createButton( const String& bar_name, ButtonCallback on_change,
//! @} highgui
}
// cv
#ifndef DISABLE_OPENCV_24_COMPATIBILITY
#include "opencv2/highgui/highgui_c.h"
#endif
#endif
modules/imgproc/include/opencv2/imgproc.hpp
View file @
d9f159a5
...
...
@@ -4217,4 +4217,8 @@ Point LineIterator::pos() const
}
// cv
#ifndef DISABLE_OPENCV_24_COMPATIBILITY
#include "opencv2/imgproc/imgproc_c.h"
#endif
#endif
modules/objdetect/include/opencv2/objdetect.hpp
View file @
d9f159a5
...
...
@@ -458,4 +458,8 @@ public:
#include "opencv2/objdetect/detection_based_tracker.hpp"
#ifndef DISABLE_OPENCV_24_COMPATIBILITY
#include "opencv2/objdetect/objdetect_c.h"
#endif
#endif
modules/photo/include/opencv2/photo.hpp
View file @
d9f159a5
...
...
@@ -802,4 +802,8 @@ CV_EXPORTS_W void stylization(InputArray src, OutputArray dst, float sigma_s = 6
}
// cv
#ifndef DISABLE_OPENCV_24_COMPATIBILITY
#include "opencv2/photo/photo_c.h"
#endif
#endif
modules/video/include/opencv2/video.hpp
View file @
d9f159a5
...
...
@@ -56,4 +56,8 @@
#include "opencv2/video/tracking.hpp"
#include "opencv2/video/background_segm.hpp"
#ifndef DISABLE_OPENCV_24_COMPATIBILITY
#include "opencv2/video/tracking_c.h"
#endif
#endif //__OPENCV_VIDEO_HPP__
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment