cap_ios.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /* For iOS video I/O
  2. * by Eduard Feicho on 29/07/12
  3. * Copyright 2012. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright notice,
  9. * this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright notice,
  11. * this list of conditions and the following disclaimer in the documentation
  12. * and/or other materials provided with the distribution.
  13. * 3. The name of the author may not be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
  17. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  18. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
  19. * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  20. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  21. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  22. * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  23. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  24. * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  25. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. *
  27. */
  28. #import <UIKit/UIKit.h>
  29. #import <Accelerate/Accelerate.h>
  30. #import <AVFoundation/AVFoundation.h>
  31. #import <ImageIO/ImageIO.h>
  32. #include "opencv2/core.hpp"
  33. //! @addtogroup videoio_ios
  34. //! @{
  35. /////////////////////////////////////// CvAbstractCamera /////////////////////////////////////
  36. @class CvAbstractCamera;
  37. @interface CvAbstractCamera : NSObject
  38. {
  39. AVCaptureSession* captureSession;
  40. AVCaptureConnection* videoCaptureConnection;
  41. AVCaptureVideoPreviewLayer *captureVideoPreviewLayer;
  42. UIDeviceOrientation currentDeviceOrientation;
  43. BOOL cameraAvailable;
  44. BOOL captureSessionLoaded;
  45. BOOL running;
  46. BOOL useAVCaptureVideoPreviewLayer;
  47. AVCaptureDevicePosition defaultAVCaptureDevicePosition;
  48. AVCaptureVideoOrientation defaultAVCaptureVideoOrientation;
  49. NSString *const defaultAVCaptureSessionPreset;
  50. int defaultFPS;
  51. UIView* parentView;
  52. int imageWidth;
  53. int imageHeight;
  54. }
  55. @property (nonatomic, retain) AVCaptureSession* captureSession;
  56. @property (nonatomic, retain) AVCaptureConnection* videoCaptureConnection;
  57. @property (nonatomic, readonly) BOOL running;
  58. @property (nonatomic, readonly) BOOL captureSessionLoaded;
  59. @property (nonatomic, assign) int defaultFPS;
  60. @property (nonatomic, readonly) AVCaptureVideoPreviewLayer *captureVideoPreviewLayer;
  61. @property (nonatomic, assign) AVCaptureDevicePosition defaultAVCaptureDevicePosition;
  62. @property (nonatomic, assign) AVCaptureVideoOrientation defaultAVCaptureVideoOrientation;
  63. @property (nonatomic, assign) BOOL useAVCaptureVideoPreviewLayer;
  64. @property (nonatomic, strong) NSString *const defaultAVCaptureSessionPreset;
  65. @property (nonatomic, assign) int imageWidth;
  66. @property (nonatomic, assign) int imageHeight;
  67. @property (nonatomic, retain) UIView* parentView;
  68. - (void)start;
  69. - (void)stop;
  70. - (void)switchCameras;
  71. - (id)initWithParentView:(UIView*)parent;
  72. - (void)createCaptureOutput;
  73. - (void)createVideoPreviewLayer;
  74. - (void)updateOrientation;
  75. - (void)lockFocus;
  76. - (void)unlockFocus;
  77. - (void)lockExposure;
  78. - (void)unlockExposure;
  79. - (void)lockBalance;
  80. - (void)unlockBalance;
  81. @end
  82. ///////////////////////////////// CvVideoCamera ///////////////////////////////////////////
  83. @class CvVideoCamera;
  84. @protocol CvVideoCameraDelegate <NSObject>
  85. #ifdef __cplusplus
  86. // delegate method for processing image frames
  87. - (void)processImage:(cv::Mat&)image;
  88. #endif
  89. @end
  90. @interface CvVideoCamera : CvAbstractCamera<AVCaptureVideoDataOutputSampleBufferDelegate>
  91. {
  92. AVCaptureVideoDataOutput *videoDataOutput;
  93. dispatch_queue_t videoDataOutputQueue;
  94. CALayer *customPreviewLayer;
  95. BOOL grayscaleMode;
  96. BOOL recordVideo;
  97. BOOL rotateVideo;
  98. AVAssetWriterInput* recordAssetWriterInput;
  99. AVAssetWriterInputPixelBufferAdaptor* recordPixelBufferAdaptor;
  100. AVAssetWriter* recordAssetWriter;
  101. CMTime lastSampleTime;
  102. }
  103. @property (nonatomic, assign) id<CvVideoCameraDelegate> delegate;
  104. @property (nonatomic, assign) BOOL grayscaleMode;
  105. @property (nonatomic, assign) BOOL recordVideo;
  106. @property (nonatomic, assign) BOOL rotateVideo;
  107. @property (nonatomic, retain) AVAssetWriterInput* recordAssetWriterInput;
  108. @property (nonatomic, retain) AVAssetWriterInputPixelBufferAdaptor* recordPixelBufferAdaptor;
  109. @property (nonatomic, retain) AVAssetWriter* recordAssetWriter;
  110. - (void)adjustLayoutToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation;
  111. - (void)layoutPreviewLayer;
  112. - (void)saveVideo;
  113. - (NSURL *)videoFileURL;
  114. - (NSString *)videoFileString;
  115. @end
  116. ///////////////////////////////// CvPhotoCamera ///////////////////////////////////////////
  117. @class CvPhotoCamera;
  118. @protocol CvPhotoCameraDelegate <NSObject>
  119. - (void)photoCamera:(CvPhotoCamera*)photoCamera capturedImage:(UIImage *)image;
  120. - (void)photoCameraCancel:(CvPhotoCamera*)photoCamera;
  121. @end
  122. @interface CvPhotoCamera : CvAbstractCamera
  123. {
  124. AVCaptureStillImageOutput *stillImageOutput;
  125. }
  126. @property (nonatomic, assign) id<CvPhotoCameraDelegate> delegate;
  127. - (void)takePicture;
  128. @end
  129. //! @} videoio_ios