Hi @RusselThomas,
Could you please share a bit more about your scenario?
Do you want to analyze the image captured via Camera control using the Computer Vision API connector within your app?
I have made a test on my side, please take a try with the following workaround:
Add a Camera control, Button control and a Gallery control within the screen. In addition, add the Computer Vision API connector as a data source within your app.
Set the OnSelect property of the Button control to following formula:
ClearCollect(ImageCollection,ComputerVisionAPI.AnalyzeImage("Image Content",{language:"en",visualFeatures:Camera1.Photo}))
Note: The Camera1 represents the Camera control within my screen. Using a collection to store the result the ComputerVisionAPI.AnalyzeImage function returns.
Set the Items property of the Gallery control to following formula:
ImageCollection
More details about the Computer Vision API connector, please check the following article:
Computer Vision API connector
Best regards,
Kris