Guest User

Untitled

a guest
Jun 29th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. - (void)captureOutput:(AVCaptureOutput *)captureOutput
  2. didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer
  3. fromConnection:(AVCaptureConnection *)connection
  4.  
  5. -(void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer
  6.  
  7. fromConnection:(AVCaptureConnection *)connection{
  8.  
  9. //Метод вызывается при записи данных с камеры в буфер
  10.  
  11. UIImage *image = [self imageFromSampleBuffer:sampleBuffer];
  12. //Преобразовывать полученный буфер в картинку
  13.  
  14.  
  15.  
  16. dispatch_sync(dispatch_get_main_queue(),
  17. ^{
  18. self.imageView.image = [self applyMonoChromeWithRedColor:image];
  19.  
  20. //Применить какие-либо эффекты к изображению,
  21. // фильтр, к примеру, и добавить на экран
  22. });
  23. }
Add Comment
Please, Sign In to add comment