Skip to content

Instantly share code, notes, and snippets.

@iosdevie
iosdevie / coreml-inputDescriptionsByName-imageconstraint.swift
Created May 26, 2021 05:48
retrieve the image constraint object from the CoreML model
let imageConstraint = model?.modelDescription.inputDescriptionsByName["image"]!.imageConstraint!
@iosdevie
iosdevie / coreml-mlfeaturevalue.swift
Created May 26, 2021 05:46
Create an MLFeatureValue instance from an image.
let featureValue = try MLFeatureValue(cgImage: image.cgImage!, constraint: imageConstraint, options: nil)