When I attempt to verify any UIImage, it would not present. I can see MTLTexture, however not UIImage. I can see photographs if I’m going to the older department, however not the present department that I’m engaged on. Tips on how to repair this?
Xcode model: 16.2
macOS: 15.7.2
Code within the picture:
guard let currentImage = self.currentImage else {return nil}
let yoloBoundingBox = hairManager.getWholeBodyBoundingBox(faceBoundingBox: boundingBox.getRect(of: currentImage.dimension), imageSize: currentImage.dimension)
let (_, rollValue) = hairManager.getBoundingBox(faceBoundingBox: boundingBox.getRect(of: currentImage.dimension))
let (humanMask, wbBoundingBox) = _getMask(utilizing: boundingBox) ?? (currentImage.cropImageToRect(cropRect: yoloBoundingBox), yoloBoundingBox)
guard let humanMask = humanMask else {
return nil
}


