Blame view

3rdparty/opencv-4.5.4/modules/videoio/misc/objc/ios/CvPhotoCamera2.m 3.78 KB
f4334277   Hu Chunming   提交3rdparty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
  //
  //  CvPhotoCamera2.mm
  //
  //  Created by Giles Payne on 2020/04/01.
  //
  
  #import "CvCamera2.h"
  
  #pragma mark - Private Interface
  
  @interface CvPhotoCamera2 ()
  {
      id<CvPhotoCameraDelegate2> _delegate;
  }
  
  @property (nonatomic, strong) AVCaptureStillImageOutput* stillImageOutput;
  
  @end
  
  
  #pragma mark - Implementation
  
  @implementation CvPhotoCamera2
  
  
  #pragma mark Public
  
  - (void)setDelegate:(id<CvPhotoCameraDelegate2>)newDelegate {
      _delegate = newDelegate;
  }
  
  - (id<CvPhotoCameraDelegate2>)delegate {
      return _delegate;
  }
  
  #pragma mark - Public interface
  
  - (void)takePicture
  {
      if (self.cameraAvailable == NO) {
          return;
      }
      self.cameraAvailable = NO;
  
      [self.stillImageOutput captureStillImageAsynchronouslyFromConnection:self.videoCaptureConnection
                                                         completionHandler:
       ^(CMSampleBufferRef imageSampleBuffer, NSError *error)
       {
           if (error == nil && imageSampleBuffer != NULL)
           {
               // TODO check
               //             NSNumber* imageOrientation = [UIImage cgImageOrientationForUIDeviceOrientation:currentDeviceOrientation];
               //             CMSetAttachment(imageSampleBuffer, kCGImagePropertyOrientation, imageOrientation, 1);
  
               NSData *jpegData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageSampleBuffer];
  
               dispatch_async(dispatch_get_main_queue(), ^{
                   [self.captureSession stopRunning];
  
                   // Make sure we create objects on the main thread in the main context
                   UIImage* newImage = [UIImage imageWithData:jpegData];
  
                   //UIImageOrientation orientation = [newImage imageOrientation];
  
                   // TODO: only apply rotation, don't scale, since we can set this directly in the camera
                   /*
                    switch (orientation) {
                    case UIImageOrientationUp:
                    case UIImageOrientationDown:
                    newImage = [newImage imageWithAppliedRotationAndMaxSize:CGSizeMake(640.0, 480.0)];
                    break;
                    case UIImageOrientationLeft:
                    case UIImageOrientationRight:
                    newImage = [newImage imageWithMaxSize:CGSizeMake(640.0, 480.0)];
                    default:
                    break;
                    }
                    */
  
                   // We have captured the image, we can allow the user to take another picture
                   self.cameraAvailable = YES;
  
                   NSLog(@"CvPhotoCamera2 captured image");
                   [self.delegate photoCamera:self capturedImage:newImage];
  
                   [self.captureSession startRunning];
               });
           }
       }];
  
  
  }
  
  - (void)stop;
  {
      [super stop];
      self.stillImageOutput = nil;
  }
  
  
  #pragma mark - Private Interface
  
  
  - (void)createStillImageOutput;
  {
      // setup still image output with jpeg codec
      self.stillImageOutput = [[AVCaptureStillImageOutput alloc] init];
      NSDictionary *outputSettings = [NSDictionary dictionaryWithObjectsAndKeys:AVVideoCodecJPEG, AVVideoCodecKey, nil];
      [self.stillImageOutput setOutputSettings:outputSettings];
      [self.captureSession addOutput:self.stillImageOutput];
  
      for (AVCaptureConnection *connection in self.stillImageOutput.connections) {
          for (AVCaptureInputPort *port in [connection inputPorts]) {
              if ([port.mediaType isEqual:AVMediaTypeVideo]) {
                  self.videoCaptureConnection = connection;
                  break;
              }
          }
          if (self.videoCaptureConnection) {
              break;
          }
      }
      NSLog(@"[Camera] still image output created");
  }
  
  
  - (void)createCaptureOutput;
  {
      [self createStillImageOutput];
  }
  
  - (void)createCustomVideoPreview;
  {
      //do nothing, always use AVCaptureVideoPreviewLayer
  }
  
  
  @end