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
c10283b2
Commit
c10283b2
authored
Jan 24, 2017
by
Dal Rupnik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replaced macro with built-in OpenCV export
parent
a50efda4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
cap_ios.h
modules/videoio/include/opencv2/videoio/cap_ios.h
+5
-7
No files found.
modules/videoio/include/opencv2/videoio/cap_ios.h
View file @
c10283b2
...
...
@@ -32,8 +32,6 @@
#import <ImageIO/ImageIO.h>
#include "opencv2/core.hpp"
#define OPENCV_OBJC_EXPORT __attribute__((visibility("default")))
//! @addtogroup videoio_ios
//! @{
...
...
@@ -41,7 +39,7 @@
@class
CvAbstractCamera
;
OPENCV_OBJC_EXPORT
@interface
CvAbstractCamera
:
NSObject
CV_EXPORTS
@interface
CvAbstractCamera
:
NSObject
{
UIDeviceOrientation
currentDeviceOrientation
;
...
...
@@ -89,7 +87,7 @@ OPENCV_OBJC_EXPORT @interface CvAbstractCamera : NSObject
@class
CvVideoCamera
;
OPENCV_OBJC_EXPORT
@protocol
CvVideoCameraDelegate
<
NSObject
>
CV_EXPORTS
@protocol
CvVideoCameraDelegate
<
NSObject
>
#ifdef __cplusplus
// delegate method for processing image frames
...
...
@@ -98,7 +96,7 @@ OPENCV_OBJC_EXPORT @protocol CvVideoCameraDelegate <NSObject>
@end
OPENCV_OBJC_EXPORT
@interface
CvVideoCamera
:
CvAbstractCamera
<
AVCaptureVideoDataOutputSampleBufferDelegate
>
CV_EXPORTS
@interface
CvVideoCamera
:
CvAbstractCamera
<
AVCaptureVideoDataOutputSampleBufferDelegate
>
{
AVCaptureVideoDataOutput
*
videoDataOutput
;
...
...
@@ -131,14 +129,14 @@ OPENCV_OBJC_EXPORT @interface CvVideoCamera : CvAbstractCamera<AVCaptureVideoDat
@class
CvPhotoCamera
;
OPENCV_OBJC_EXPORT
@protocol
CvPhotoCameraDelegate
<
NSObject
>
CV_EXPORTS
@protocol
CvPhotoCameraDelegate
<
NSObject
>
-
(
void
)
photoCamera
:
(
CvPhotoCamera
*
)
photoCamera
capturedImage
:
(
UIImage
*
)
image
;
-
(
void
)
photoCameraCancel
:(
CvPhotoCamera
*
)
photoCamera
;
@end
OPENCV_OBJC_EXPORT
@interface
CvPhotoCamera
:
CvAbstractCamera
CV_EXPORTS
@interface
CvPhotoCamera
:
CvAbstractCamera
{
AVCaptureStillImageOutput
*
stillImageOutput
;
}
...
...
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