CIImage to CVPixelBuffer

MLBoy
1 min readAug 23, 2020

--

  1. Make CVPixel Buffer.
var pixelBuffer: CVPixelBuffer?
let attrs = [kCVPixelBufferCGImageCompatibilityKey: kCFBooleanTrue,
kCVPixelBufferCGBitmapContextCompatibilityKey: kCFBooleanTrue] as CFDictionary
let width:Int = Int(size.width)let height:Int = Int(size.height)CVPixelBufferCreate(kCFAllocatorDefault,
width,
height,
kCVPixelFormatType_32BGRA,
attrs,
&pixelBuffer)

2, Render CIImage to CVPixelBuffer.

let context = CIContext()
context.render(ciImage, to: pixelBuffer!)

****

We send information related to machine learning.

Twitter

contact:

rockyshikoku@gmail.com

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

MLBoy
MLBoy

No responses yet

Write a response