iOS 實(shí)時(shí)獲取攝像頭陈瘦,和二維碼識(shí)別

首相介紹相關(guān)的類

AVCaptureSession

AVCaptureSession 它是管理捕獲活動(dòng)并協(xié)調(diào)來自輸入設(shè)備的數(shù)據(jù)流以捕獲輸出的對(duì)象启搂。
要執(zhí)行實(shí)時(shí)或離線捕獲,您需要實(shí)例化一個(gè) AVCaptureSession 對(duì)象并添加適當(dāng)?shù)妮斎耄ɡ?AVCaptureDeviceInput )和輸出(例如 AVCaptureMovieFileOutput )港柜。 以下代碼片段說明了如何配置捕獲設(shè)備以記錄音頻:

AVCaptureSession *captureSession = [[AVCaptureSession alloc] init];
AVCaptureDevice *audioCaptureDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeAudio];
NSError *error = nil;
AVCaptureDeviceInput *audioInput = [AVCaptureDeviceInput deviceInputWithDevice:audioCaptureDevice error:&error];
if (audioInput) {
    [captureSession addInput:audioInput];
}
else {
    // Handle the failure.
}

AVCaptureDevice

為捕獲會(huì)話提供輸入(例如音頻或視頻)并提供針對(duì)硬件特定捕獲功能的控制的設(shè)備请契。

// 方法1
// Choose the back dual camera if available, otherwise default to a wide angle camera.
    AVCaptureDevice *videoDevice = [AVCaptureDevice defaultDeviceWithDeviceType:AVCaptureDeviceTypeBuiltInDuoCamera mediaType:AVMediaTypeVideo position:AVCaptureDevicePositionBack];
    if ( ! videoDevice ) {
        // If the back dual camera is not available, default to the back wide angle camera.
        videoDevice = [AVCaptureDevice defaultDeviceWithDeviceType:AVCaptureDeviceTypeBuiltInWideAngleCamera mediaType:AVMediaTypeVideo position:AVCaptureDevicePositionBack];
        // In some cases where users break their phones, the back wide angle camera is not available. In this case, we should default to the front wide angle camera.
        if ( ! videoDevice ) {
            videoDevice = [AVCaptureDevice defaultDeviceWithDeviceType:AVCaptureDeviceTypeBuiltInWideAngleCamera mediaType:AVMediaTypeVideo position:AVCaptureDevicePositionFront];
        }
    }

// 新方法1
+ (instancetype)discoverySessionWithDeviceTypes:(NSArray<AVCaptureDeviceType> *)deviceTypes mediaType:(NSString *)mediaType position:(AVCaptureDevicePosition)position;

// 方法2
AVCaptureDevice *device = [AVCaptureDevice
                               defaultDeviceWithMediaType:AVMediaTypeVideo];

AVCaptureInput

用于向捕獲會(huì)話提供輸入數(shù)據(jù)的對(duì)象的抽象超類。
要將AVCaptureInput對(duì)象與會(huì)話關(guān)聯(lián)夏醉,請(qǐng)?jiān)跁?huì)話上調(diào)用 addInput:爽锥。
AVCaptureInput對(duì)象具有一個(gè)或多個(gè)端口(AVCaptureInputPort的實(shí)例),它們可以生成每個(gè)數(shù)據(jù)流一個(gè)畔柔。 例如救恨,呈現(xiàn)一個(gè)視頻數(shù)據(jù)流的AVCaptureDevice對(duì)象具有一個(gè)端口。

AVCaptureDeviceInput

AVCaptureDeviceInput 它是捕獲輸入類释树,提供從捕獲設(shè)備到捕獲會(huì)話(AVCaptureSession)的媒體。
AVCaptureDeviceInputAVCaptureInput 的一個(gè)具體子類擎淤,用于從AVCaptureDevice 對(duì)象捕獲數(shù)據(jù)奢啥。

AVCaptureDeviceInput *videoDeviceInput = [AVCaptureDeviceInput deviceInputWithDevice:videoDevice error:&error];
    if ( ! videoDeviceInput ) {
        NSLog( @"Could not create video device input: %@", error );
        return;
    }
    if ( [self.session canAddInput:videoDeviceInput] ) {
        [self.session addInput:videoDeviceInput];
    }

AVCaptureOutput

AVCaptureOutput 是描述 AVCaptureSession 對(duì)象的輸出目標(biāo)的抽象基類。
AVCaptureOutput提供了一個(gè)抽象接口嘴拢,用于將捕獲輸出目標(biāo)(例如文件和視頻預(yù)覽)連接到捕獲會(huì)話(AVCaptureSession 的實(shí)例)桩盲。 捕獲輸出可以具有由AVCaptureConnection 對(duì)象表示的多個(gè)連接,每個(gè)連接對(duì)象從捕獲輸入(AVCaptureInput的實(shí)例)接收的每個(gè)媒體流席吴。 捕獲輸出在首次創(chuàng)建時(shí)沒有任何連接赌结。 將輸出添加到捕獲會(huì)話時(shí),將創(chuàng)建將媒體數(shù)據(jù)從該會(huì)話的輸入映射到其輸出的連接孝冒。
您可以使用addOutput(_ :)將具體的AVCaptureOutput 實(shí)例添加到捕獲會(huì)話柬姚。

// 照片輸出
AVCapturePhotoOutput *photoOutput = [[AVCapturePhotoOutput alloc] init];
    if ( [self.session canAddOutput:photoOutput] ) {
        [self.session addOutput:photoOutput];
    }
//視頻輸出
AVCaptureMovieFileOutput *movieFileOutput = [[AVCaptureMovieFileOutput alloc] init];
if ( [self.session canAddOutput:movieFileOutput] )
    {
        [self.session beginConfiguration];
        [self.session addOutput:movieFileOutput];
        self.session.sessionPreset = AVCaptureSessionPresetHigh;
        AVCaptureConnection *connection = [movieFileOutput connectionWithMediaType:AVMediaTypeVideo];
        if ( connection.isVideoStabilizationSupported ) {
            connection.preferredVideoStabilizationMode = AVCaptureVideoStabilizationModeAuto;
        }
        [self.session commitConfiguration];
    }
// 元數(shù)據(jù)
 AVCaptureMetadataOutput *output2 = [[AVCaptureMetadataOutput alloc] init];
    [_session addOutput:output2];
    dispatch_queue_t queue = dispatch_queue_create("myQueue", NULL);
    [output2 setMetadataObjectsDelegate:self queue:queue];

AVCaptureVideoPreviewLayer

核心動(dòng)畫層,可以在捕獲視頻時(shí)顯示庄涡。
AVCaptureVideoPreviewLayerCALayer 的子類量承,用于在視頻被輸入設(shè)備捕獲時(shí)用于顯示視頻。
您可以將此預(yù)覽圖層與AV捕獲會(huì)話結(jié)合使用,如以下代碼段所示:

AVCaptureSession *captureSession = <#Get a capture session#>;
AVCaptureVideoPreviewLayer *previewLayer = [AVCaptureVideoPreviewLayer layerWithSession:captureSession];
UIView *aView = <#The view in which to present the layer#>;
previewLayer.frame = aView.bounds; // Assume you want the preview layer to fill the view.
[aView.layer addSublayer:previewLayer];

二維碼掃描

主要代碼:

 NSError *error = nil;
    
    // 初始化會(huì)話
    _session = [[AVCaptureSession alloc] init];
    
    // 設(shè)置會(huì)話設(shè)置輸出質(zhì)量
    _session.sessionPreset = AVCaptureSessionPresetMedium;
 
    // 獲取需要的設(shè)備
    AVCaptureDevice *device = [AVCaptureDevice
                               defaultDeviceWithMediaType:AVMediaTypeVideo];
    AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:device
                                                                        error:&error];
    if (!input) {
        // Handling the error appropriately.
    }
    [_session addInput:input];
    
    dispatch_queue_t queue = dispatch_queue_create("myQueue", NULL);
 // 
    AVCaptureMetadataOutput *output2 = [[AVCaptureMetadataOutput alloc] init];
    [_session addOutput:output2];
    [output2 setMetadataObjectsDelegate:self queue:queue];
    
// 設(shè)置為二維碼類型(AVMetadataObjectTypeQRCode)撕捍,
// 還有其他類型拿穴,可以去接口文件里查看
    [output2 setMetadataObjectTypes:@[AVMetadataObjectTypeQRCode]];

    // Start the session running to start the flow of data
    [_session startRunning];
    
    //預(yù)覽層的生成,實(shí)時(shí)獲取攝像頭數(shù)據(jù)
    self.previewLayer = [[AVCaptureVideoPreviewLayer alloc] initWithSession:_session];
    self.previewLayer.frame = CGRectMake(0, 64, 300, 304);
    self.previewLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;
    [self.view.layer addSublayer:self.previewLayer];

代理:<AVCaptureMetadataOutputObjectsDelegate>


- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputMetadataObjects:(NSArray *)metadataObjects fromConnection:(AVCaptureConnection *)connection {
    if (metadataObjects.count > 0) {
        //獲得掃描數(shù)據(jù)忧风,最后一個(gè)是最新掃描的數(shù)據(jù)
        AVMetadataMachineReadableCodeObject *object = [metadataObjects lastObject];
        // 結(jié)果  object.stringValue
        dispatch_async(dispatch_get_main_queue(), ^{
            _label.text = object.stringValue;
        });
    } else {
        dispatch_async(dispatch_get_main_queue(), ^{
            _label.text = @"沒有掃描到數(shù)據(jù)";
        });
        
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末默色,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子狮腿,更是在濱河造成了極大的恐慌腿宰,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,561評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件蚤霞,死亡現(xiàn)場離奇詭異酗失,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)昧绣,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,218評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門规肴,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人夜畴,你說我怎么就攤上這事拖刃。” “怎么了贪绘?”我有些...
    開封第一講書人閱讀 157,162評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵兑牡,是天一觀的道長。 經(jīng)常有香客問我税灌,道長均函,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,470評(píng)論 1 283
  • 正文 為了忘掉前任菱涤,我火速辦了婚禮苞也,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘粘秆。我一直安慰自己如迟,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,550評(píng)論 6 385
  • 文/花漫 我一把揭開白布攻走。 她就那樣靜靜地躺著殷勘,像睡著了一般。 火紅的嫁衣襯著肌膚如雪昔搂。 梳的紋絲不亂的頭發(fā)上玲销,一...
    開封第一講書人閱讀 49,806評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音摘符,去河邊找鬼痒玩。 笑死淳附,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的蠢古。 我是一名探鬼主播奴曙,決...
    沈念sama閱讀 38,951評(píng)論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼草讶!你這毒婦竟也來了洽糟?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,712評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤堕战,失蹤者是張志新(化名)和其女友劉穎坤溃,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體嘱丢,經(jīng)...
    沈念sama閱讀 44,166評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡薪介,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,510評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了越驻。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片汁政。...
    茶點(diǎn)故事閱讀 38,643評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖缀旁,靈堂內(nèi)的尸體忽然破棺而出记劈,到底是詐尸還是另有隱情,我是刑警寧澤并巍,帶...
    沈念sama閱讀 34,306評(píng)論 4 330
  • 正文 年R本政府宣布目木,位于F島的核電站,受9級(jí)特大地震影響懊渡,放射性物質(zhì)發(fā)生泄漏刽射。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,930評(píng)論 3 313
  • 文/蒙蒙 一剃执、第九天 我趴在偏房一處隱蔽的房頂上張望誓禁。 院中可真熱鬧,春花似錦忠蝗、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,745評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至骇两,卻和暖如春速种,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背低千。 一陣腳步聲響...
    開封第一講書人閱讀 31,983評(píng)論 1 266
  • 我被黑心中介騙來泰國打工配阵, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留馏颂,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,351評(píng)論 2 360
  • 正文 我出身青樓棋傍,卻偏偏與公主長得像救拉,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子瘫拣,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,509評(píng)論 2 348

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