The various "flood fill" functions from the vImage library (e.g. vImageFloodFill_Planar8
- listed here) are missing from Xcode 14.0.1.
Is there a way to access them?
Ex:
import Accelerate
// --> Cannot find 'vImageFloodFill_Planar8' in scope
let err = vImageFloodFill_Planar8(
&buffer,
nil,
100,
100,
128,
8,
0)
)