I have an AI Builder Model setup to read images for odometers.
I've created a PowerApp and included the control for the FormProcessor and the AI portion of it is working fine.
After the image is processed and it reads the miles I then want to insert the results into a SharePoint List.
My challenge is accessing the image in the FormProcessor Control to then Patch to the SharePoint list. I've successfully patched with and Image2 control but I don't want the user to have to select the same image twice (Add picture, Analyze in FormProcessor). I need to either, update the FormProcessor Control with the image from the Image Control, or visa versa so I can then run my Patch statement.
The goal, select the image once, analyze, set the miles read, patch and save the actual image and the miles.

Here's my patch statement:
Patch('Van Checkout - Checkin', Defaults('Van Checkout - Checkin'),
{
Title: Gallery1.Selected.Title,
Van: {'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id:Gallery1.Selected.ID,
Value:Gallery1.Selected.Title},
'Start Odometer Image': Image2.Image,
'Start Odometer Number': Value(OdometerReading.Text)
});
Notify("The data has been saved to the list");