I opened up the project after not using it for a while and I was getting an Error: “use of unresolved identifier” for CIImage error on the VisionNative.swift script on line 93
// Create an image from the current state of the buffer guard let image = CIImage(mtlTexture: texture, options: nil) else { return false }
my xcode is Version 11.0 (11A420a)
adding a simple import CoreImage to the top fixed my error. I really don't know why this error happened...
I opened up the project after not using it for a while and I was getting an
Error: “use of unresolved identifier”
for CIImage error on the VisionNative.swift script on line 93// Create an image from the current state of the buffer guard let image = CIImage(mtlTexture: texture, options: nil) else { return false }
my xcode is Version 11.0 (11A420a)
adding a simple import CoreImage to the top fixed my error. I really don't know why this error happened...