2022-01-13-相機(jī)采集&metal上屏

相機(jī)采集

iOS系統(tǒng)相機(jī)氛圍AVCaptureSession和AVCaptureMultiCamSession兩種劝赔。主要區(qū)別是AVCaptureSession只能有一路的dataOuput,在多路輸出的場(chǎng)景就需要使用AVCaptureMultiCamSession。


image.png

初始化session

self.captureSession = [[AVCaptureSession alloc] init]; 

初始化device

- (AVCaptureDevice *)p_chooseBestDevice:(AVCaptureDevicePosition)pos deviceType:(NSArray<AVCaptureDeviceType> *)devieTypes {
    AVCaptureDevice *bestDevice;
    if (@available(iOS 10.0, *)) {
        if (devieTypes.count <0) {
            devieTypes = @[AVCaptureDeviceTypeBuiltInWideAngleCamera];
        }
        AVCaptureDeviceDiscoverySession *discorverySession = [AVCaptureDeviceDiscoverySession discoverySessionWithDeviceTypes:devieTypes mediaType:AVMediaTypeVideo position:pos];
        NSArray<AVCaptureDevice *> *devices = discorverySession.devices;
        for (AVCaptureDevice *device in devices) {
            for (AVCaptureDeviceType deviceType in devieTypes) {
                if ([deviceType isEqualToString:device.deviceType]) {
                    bestDevice = device;
                    break;
                }
            }
        }
    } else {
        NSArray<AVCaptureDevice *> *devices = [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo];
        for (AVCaptureDevice *device in devices) {
                if (device.position == pos) {
                    bestDevice = device;
                    break;
            }
        }
    }
    return bestDevice;
}

初始化input

self.deviceInput = [[AVCaptureDeviceInput alloc] initWithDevice:self.device error:&error];
    if (error) {
        ZZHDebugLog(@"%@", error);
    }
    if ([self.captureSession canAddInput:self.deviceInput]) {
        [self.captureSession addInput:self.deviceInput];
    }

初始化output

self.videoDataOutput = [[AVCaptureVideoDataOutput alloc] init];
    [self.videoDataOutput setAlwaysDiscardsLateVideoFrames:YES];
    [self.videoDataOutput setVideoSettings:[NSDictionary dictionaryWithObject:[NSNumber numberWithInt:kCVPixelFormatType_32BGRA] forKey:(id)kCVPixelBufferPixelFormatTypeKey]];

    self.videoCaptureQueue = dispatch_queue_create("com.zzh.videocatpure", 0);
    [self.videoDataOutput setSampleBufferDelegate:self queue:self.videoCaptureQueue];
    if ([self.captureSession canAddOutput:self.videoDataOutput]) {
        [self.captureSession addOutput:self.videoDataOutput];
    }

設(shè)置輸出幀方向

AVCaptureConnection *connection = [self.videoDataOutput connectionWithMediaType:AVMediaTypeVideo];
    connection.videoOrientation = AVCaptureVideoOrientationPortrait;

AVCaptureVideoDataOutputSampleBufferDelegate

- (void)captureOutput:(AVCaptureOutput *)output didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection {
    if (output == self.videoDataOutput) {
        if (self.videoBufferCallBack) {
            self.videoBufferCallBack(sampleBuffer);
        }
    }
}
- (void)captureOutput:(AVCaptureOutput *)output didDropSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection API_AVAILABLE(ios(6.0), macCatalyst(14.0)) {
    ZZHDebugLog(@"");
}

metal上屏

初始化MTKView

- (void)p_initPreview:(CGRect)frame {
    self.preivew = [[MTKView alloc] initWithFrame:frame];
    self.preivew.device = MTLCreateSystemDefaultDevice();
    self.preivew.delegate = self;
    self.preivew.framebufferOnly = NO;
    self.commandQueue = [self.preivew.device newCommandQueue];
    CVMetalTextureCacheCreate(NULL, NULL, self.preivew.device, NULL, &_textureCache);
}

上傳紋理

- (void)displayBuffer:(CMSampleBufferRef)buffer {
    CVPixelBufferRef pixelBuffer = CMSampleBufferGetImageBuffer(buffer);
    size_t width = CVPixelBufferGetWidth(pixelBuffer);
    size_t height = CVPixelBufferGetHeight(pixelBuffer);
    CVMetalTextureRef tmpTexture = NULL;
    CVReturn status = CVMetalTextureCacheCreateTextureFromImage(kCFAllocatorDefault, self.textureCache, pixelBuffer, NULL, MTLPixelFormatBGRA8Unorm, width, height, 0, &tmpTexture);
    if (status == kCVReturnSuccess) {
        self.preivew.drawableSize = CGSizeMake(width, height);
        self.texture = CVMetalTextureGetTexture(tmpTexture);
        CFRelease(tmpTexture);
    }
}

上屏

- (void)drawInMTKView:(nonnull MTKView *)view {
    if (self.texture) {
        id<MTLCommandBuffer> commandBuffer = [self.commandQueue commandBuffer];
        id<MTLTexture> drawingTexture = view.currentDrawable.texture;
        MPSImageGaussianBlur *filter = [[MPSImageGaussianBlur alloc] initWithDevice:view.device sigma:1];
        [filter encodeToCommandBuffer:commandBuffer sourceTexture:self.texture destinationTexture:drawingTexture];
        
        [commandBuffer presentDrawable:view.currentDrawable];
        [commandBuffer commit];
        self.texture = NULL;
    }
}

問(wèn)題

1焙蹭、activeFormat、preset留待后邊討論
2柑贞、輸出幀數(shù)據(jù)格式的設(shè)置方椎,有一些系統(tǒng)的行為,不設(shè)置凌外、設(shè)置nil都有差別
3辩尊、輸出幀的額外信息留待后邊討論,例如亮度
4康辑、上屏的信息一定要和幀格式對(duì)齊摄欲,不然有色差,如轉(zhuǎn)換矩陣疮薇、顏色空間等

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末胸墙,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子按咒,更是在濱河造成了極大的恐慌迟隅,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,884評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件励七,死亡現(xiàn)場(chǎng)離奇詭異智袭,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)掠抬,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,347評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門吼野,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人两波,你說(shuō)我怎么就攤上這事瞳步。” “怎么了腰奋?”我有些...
    開封第一講書人閱讀 157,435評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵单起,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我劣坊,道長(zhǎng)嘀倒,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,509評(píng)論 1 284
  • 正文 為了忘掉前任局冰,我火速辦了婚禮括儒,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘锐想。我一直安慰自己,他們只是感情好乍狐,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,611評(píng)論 6 386
  • 文/花漫 我一把揭開白布赠摇。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪藕帜。 梳的紋絲不亂的頭發(fā)上烫罩,一...
    開封第一講書人閱讀 49,837評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音洽故,去河邊找鬼贝攒。 笑死,一個(gè)胖子當(dāng)著我的面吹牛时甚,可吹牛的內(nèi)容都是我干的隘弊。 我是一名探鬼主播,決...
    沈念sama閱讀 38,987評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼荒适,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼梨熙!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起刀诬,我...
    開封第一講書人閱讀 37,730評(píng)論 0 267
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤咽扇,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后陕壹,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體质欲,經(jīng)...
    沈念sama閱讀 44,194評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,525評(píng)論 2 327
  • 正文 我和宋清朗相戀三年糠馆,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了嘶伟。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,664評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡榨惠,死狀恐怖奋早,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情赠橙,我是刑警寧澤耽装,帶...
    沈念sama閱讀 34,334評(píng)論 4 330
  • 正文 年R本政府宣布,位于F島的核電站期揪,受9級(jí)特大地震影響掉奄,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜凤薛,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,944評(píng)論 3 313
  • 文/蒙蒙 一姓建、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧缤苫,春花似錦速兔、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,764評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)谍婉。三九已至,卻和暖如春镀钓,著一層夾襖步出監(jiān)牢的瞬間穗熬,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,997評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工丁溅, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留唤蔗,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,389評(píng)論 2 360
  • 正文 我出身青樓窟赏,卻偏偏與公主長(zhǎng)得像妓柜,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子饰序,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,554評(píng)論 2 349

推薦閱讀更多精彩內(nèi)容