- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前有一个自研框架(MySDK),以及一个使用MySDK的iOS应用程序(MyApp)。
在 MySDK 内部,我在 MySDK 中有一个类(Scanner),用于处理来自设备摄像头视频输出的图像。
这是我的代码示例:
扫描仪.swift
class Scanner: NSObject, AVCaptureVideoDataOutputSampleBufferDelegate {
var captureDevice : AVCaptureDevice?
var captureOutput : AVCaptureVideoDataOutput?
var previewLayer : AVCaptureVideoPreviewLayer?
var captureSession : AVCaptureSession?
var rootViewController : UIViewController?
func scanImage (viewController: UIViewController)
{
NSLog("%@", "scanning begins!")
if (captureSession == nil) { captureSession = AVCaptureSession() }
rootViewController = viewController;
captureSession!.sessionPreset = AVCaptureSessionPresetHigh
let devices = AVCaptureDevice.devices()
for device in devices {
if (device.hasMediaType(AVMediaTypeVideo)) {
if(device.position == AVCaptureDevicePosition.Back) {
captureDevice = device as? AVCaptureDevice
}
}
}
if (captureDevice != nil) {
NSLog("%@", "beginning session!")
beginSession()
}
}
func beginSession()
{
if (captureSession == nil) { captureSession = AVCaptureSession() }
if (captureOutput == nil) { captureOutput = AVCaptureVideoDataOutput() }
if (previewLayer == nil) { previewLayer = AVCaptureVideoPreviewLayer() }
let queue = dispatch_queue_create("myQueue", DISPATCH_QUEUE_SERIAL);
captureOutput!.setSampleBufferDelegate(self, queue: queue)
captureOutput!.videoSettings = [kCVPixelBufferPixelFormatTypeKey as NSString: Int(kCVPixelFormatType_32BGRA)]
captureSession!.addInput(try! AVCaptureDeviceInput(device: captureDevice))
captureSession!.addOutput(captureOutput)
previewLayer = AVCaptureVideoPreviewLayer(session: captureSession)
previewLayer!.frame = rootViewController!.view.layer.frame
rootViewController!.view.layer.addSublayer(previewLayer!)
captureSession!.startRunning()
}
func captureOutput(captureOutput: AVCaptureOutput!, didOutputSampleBuffer sampleBuffer: CMSampleBufferRef!, fromConnection connection: AVCaptureConnection!)
{
NSLog("%@", "captured!")
}
}
在 MyApp 中,我有一个 ViewController,它实现了一个 IBAction
,其中初始化了 Scanner 类,并触发了 scanImage
函数。
MyApp.m:
- (IBAction)btnScanImage_TouchDown:(id)sender
{
Scanner * scanner = [[Scanner alloc] init];
[scanner scanImage:self];
}
相机 View 出现在应用程序内部,但 captureOutput 函数从未被触发,并且控制台仅包含这两行:
2016-03-07 11:11:45.860 myapp[1236:337377] scanning begins!
2016-03-07 11:11:45.984 myapp[1236:337377] beginning session!
创建一个独立的应用程序,并将 Scanner.swift 中的代码嵌入到 ViewController 中效果很好; captureOutput 函数正确触发。
有人知道我在这里做错了什么吗?
最佳答案
经过多次尝试和错误,我终于找到了解决问题的方法。
显然,我没有将 Scanner
对象创建为类变量,而只是将本地变量创建为本地变量。
将 Scanner
对象创建为类变量后,委托(delegate)方法 captureOutput
就会正确触发。
关于ios - AVCaptureVideoDataOutputSampleBufferDelegate.CaptureOutput 未调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35835920/
我试图更好地理解 AVFoundation 框架以及各种 Core xxxx 框架,因此我决定尝试一个简单的视频捕获,看看是否可以将图像输出到 UI。我查看了 rosyWriter 代码和文档,但没有
我已经研究这个太久了。 我正在尝试获取 MacOS 网络摄像头数据并在网络摄像头输出的帧上运行 CIDetect。 我知道我需要: 连接 AVCaptureDevice (如输入)到AVCapture
请理解,我无法在此处上传整个代码。 我有 @interface BcsProcessor : NSObject {} 和 BcsProcessor 有 setupCaptureSession和 ca
我目前有一个自研框架(MySDK),以及一个使用MySDK的iOS应用程序(MyApp)。 在 MySDK 内部,我在 MySDK 中有一个类(Scanner),用于处理来自设备摄像头视频输出的图像。
我正在尝试实时捕获相机帧,以便使用 Firebase ML KIT 进行处理。我已成功显示相机 View ,但似乎无法调用 captureOutput 委托(delegate)函数。 P.s 我是 i
我有一个录制视频的应用,但我需要它向用户实时显示麦克风捕获的声音的音高水平。我已经能够使用 AVCaptureSession 成功地将音频和视频录制到 MP4 .但是,当我添加 AVCaptureAu
我目前正在尝试为我的应用程序实现摄像头实时馈送。我已经设置好了,但不知怎么的,它没有按预期工作。据我所知,captureOutput 应该在每次识别帧时执行,并且打印消息应该在控制台中输出,但不知何故
我正在尝试处理视频帧并从中提取集中的颜色。我使用的是 AVCaptureStillImageOutput,但每次我拍摄一帧进行处理时它都会发出快门声,所以我切换到 AVCaptureVideoData
首先,我知道很多人问过类似的问题 - 但我找不到任何类似的问题。 调用该接口(interface)时: - (void) captureOutput:(AVCaptureOutput *)captur
添加喜欢为我实时记录的每一帧添加过滤器并将过滤后的图像显示在 UIImageView 中,如果有人可以帮助它会很好。但从未调用 captureoutput,这是我的代码。 class Measurem
我正在使用 AVCaptureScreenInput 在 Mac 上尝试屏幕捕获,但从未调用 AVCaptureVideoDataOutput 委托(delegate) captureOutput,我
我有一个非常具体的问题,但希望有人可以帮助我。我正在使用 AVFoundation 创建具有实时预览功能的摄像机。我使用 AVCaptureVideoDataOutput 来获取各个帧,并使用 AVC
我正在尝试处理 AVCaptureSession 的每一帧并在 UIImageView 中预览过滤后的图像。它有效,但 UIImageView 中的图像出现旋转(和扭曲)。我一直试图在这里和在谷歌中找
我找到了使用二维码的教程 - here it is .使用这种方法,我可以从设备相机获取图像并在那里找到 QR 码。 问题是,当我更改 ViewController 甚至停止 AVCaptureSes
我想从 AVCaptureSession 的实时馈送中提取帧,我正在使用 Apple 的 AVCam 作为测试用例。这是 AVCam 的链接: https://developer.apple.com/
我正在构建一个 iOS 应用程序(我的第一个),它可以动态处理视频静止帧。为了深入研究这个问题,我遵循了example from the AV* documentation来自苹果公司。 该过程涉及设
目前,我有一个 AVCaptureSession 在我的 Swift 应用程序中运行,我有一个带有 CGRect 的 UIView,我想在相机源上四处移动。我一直在尝试通过更改 captureOutp
我开始开发 iOS 应用程序,这是我的第一篇 SO 帖子。我正在尝试实现一个 UI View ,它可以显示后置摄像头的预览视频并处理捕获的帧。我的预览层工作得很好,我可以在我的 UI View 中看到
我在下面使用的代码应该拍摄一张照片,然后将图像转换为 base64 以便将其发送到服务器。该代码可以拍摄照片,将其转换为base64,然后将其上传到我的服务器,但已停止工作。我曾尝试使用其他堆栈溢出帖
来源 所以,我这样设置了一个QTCaptureSession: //Setup Camera cameraSession = [[QTCaptureSession alloc] ini
我是一名优秀的程序员,十分优秀!