Skip to content
This repository was archived by the owner on Dec 21, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions userguide/object_detection/export-coreml.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ request.imageCropAndScaleOption = .scaleFill
```

We use `.scaleFill` that stretches the image into the native input size of the
model. If you use `.centerCrop` or `.scaleFit`, it will be a bit tricker to
correctly map the bonding box coordinate system to the original input image.
model. If you use `.centerCrop` or `.scaleFit`, it will be a bit trickier to
correctly map the bounding box coordinate system to the original input image.

From the `request` results we get two `MLMultiArray` instances,
`coordinates` and `confidence`. For easier handling, we will convert these
Expand Down