gpt4 book ai didi

swift - 在 Swift 中重写 CIImage 最终会导致处理器下降到 0% 并卡住

转载 作者:行者123 更新时间:2023-11-30 11:23:42 25 4
gpt4 key购买 nike

我想将 CIImage 混合到我最后一个 CIImage 中。当我多次重复此操作时,输出图像最终卡住,并且我看到 CPU 下降到 0%。我不确定是否是因为它是不可变的,但我重新定义其他 CIImage 没有问题,所以我不确定这是否是问题所在。

我正在重写的 CIImage 是全局的,但我已经尝试了所有不同的范围。这也是可选的

var retainedCI:CIImage? = nil

我的功能

func createRetainedCI(ciImage:CIImage,
retainedCI:CIImage) -> CIImage {

let colorMatrix = CIFilter(name: "CIColorMatrix")
colorMatrix?.setDefaults()

colorMatrix?.setValue(retainedCI, forKey: kCIInputImageKey)
colorMatrix?.setValue(CIVector(x: 0, y: 0, z: 0, w: debugAlpha), forKey: "inputAVector")

var dupeCI = colorMatrix?.outputImage

dupeCI = dupeCI?.applyingFilter("CISourceOverCompositing", parameters: [kCIInputImageKey: dupeCI!,
kCIInputBackgroundImageKey: ciImage])

return dupeCI!

}

我怎么调用它

if retainedCI == nil { retainedCI = ciImage }

retainedCI = hueCycleFilters.createRetainedCI(ciImage: ciImage, retainedCI: retainedCI!)

最佳答案

尝试使用此功能

func createRetainedCI(ciImage:CIImage,
retainedCI:CIImage) -> CIImage {

let colorMatrix = CIFilter(name: "CIColorMatrix")
colorMatrix?.setDefaults()

colorMatrix?.setValue(retainedCI, forKey: kCIInputImageKey)
colorMatrix?.setValue(CIVector(x: 0, y: 0, z: 0, w: debugAlpha), forKey: "inputAVector")

var dupeCI = colorMatrix?.outputImage

colorMatrix = nil

dupeCI = dupeCI?.applyingFilter("CISourceOverCompositing", parameters: [kCIInputImageKey: dupeCI!,
kCIInputBackgroundImageKey: ciImage])

return dupeCI!

}

关于swift - 在 Swift 中重写 CIImage 最终会导致处理器下降到 0% 并卡住,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50993230/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com