ios - Swift 3 CGImage 内存问题

标签 ios memory-leaks swift3 core-image

我在 Swift3 的代码中有这个函数,实际上我几乎是从 Apple 示例代码中直接翻译过来的。

我的应用程序处理来自摄像头捕获实时信号的 sampleBuffers。

此函数正确地从 CMSampleBuffer 创建并返回图像。 它工作正常,但内存一直在增长,直到应用程序崩溃。

通过 Instruments,我看到有一些图像数据没有发布。 如果我评论我做“context.makeImage”的那一行,内存就会停止。阅读那个 func 文档,它说它从上下文中复制数据。所以我认为有一些数据被复制了,但没有发布一个副本。

'问题'是 Swift 自动处理 CoreFoundations 内存保留/释放,所以我没有办法处理它。

如您所见,我尝试使用自动释放池,但它不起作用。

有什么想法吗?

谢谢

func image(from sampleBuffer:CMSampleBuffer) -> UIImage?{

    /* https://developer.apple.com/library/content/qa/qa1702/_index.html */
    let imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer)

    guard imageBuffer != nil else{
        return nil
    }

    return autoreleasepool{ () -> UIImage in

        CVPixelBufferLockBaseAddress(imageBuffer!, .readOnly);

        let baseAddress = CVPixelBufferGetBaseAddress(imageBuffer!)

        // Get the number of bytes per row for the pixel buffer
        let bytesPerRow = CVPixelBufferGetBytesPerRow(imageBuffer!);
        // Get the pixel buffer width and height
        let width = CVPixelBufferGetWidth(imageBuffer!);
        let height = CVPixelBufferGetHeight(imageBuffer!);

        let colorSpace = CGColorSpaceCreateDeviceRGB();

        let bitmapInfo = CGBitmapInfo(rawValue: CGImageAlphaInfo.premultipliedFirst.rawValue)
            .union(.byteOrder32Little)

        // Create a bitmap graphics context with the sample buffer data
        let context = CGContext(data: baseAddress, width: width, height: height, bitsPerComponent: 8,
                                bytesPerRow: bytesPerRow, space: colorSpace, bitmapInfo: bitmapInfo.rawValue);

        // Create a Quartz image from the pixel data in the bitmap graphics context
        let quartzImage = context!.makeImage();
        // Unlock the pixel buffer
        CVPixelBufferUnlockBaseAddress(imageBuffer!,.readOnly);

        let image = UIImage(cgImage: quartzImage!)

        return image
    }
}

最佳答案

我找到了解决问题的方法。

我不知道 UIKit 不是线程安全的。似乎在与主线程不同的线程中执行该代码不允许系统按应有的方式释放内存。

在主线程上,内存被正确释放和管理。

关于ios - Swift 3 CGImage 内存问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42067288/

相关文章:

ios - 使用 Xcode 8 转换为 Swift 3

swift - 按 T​​abBar 项目后弹出

iPhone UITabBarController 内存管理

ios - 搜索栏文本字段颜色不会改变

ios - Swift JavaScriptCore 有时会崩溃(bmalloc::VMHeap::grow())

ios - RxSwift+Moya+Moya_ObjectMapper+MJRefresh,刷新失败?

c++ - RAII 与垃圾收集器

c++ - 如何检测 WinCE C/C+ 运行时库下的泄漏?

c++ - 套接字内存泄漏

ios - 了解 AlamoFire OAuth 示例