Hi @HSheild , @Anonymous
HSeild is right when advising to use the filtering/lookup functions.
If you want to display teams that have been detected, you should apply a filter on the detected objects and then on your entity.
As the ObjectDetector control outputs a table of records containing id, label and count, I would recommend you to:
1. Filter records that have a count greater than 0.
2. Apply a filter based on teams retrieved in step 1, on your entity.
Assuming your control is name "ObjectDetector1" in your app, you should use the following formula to filter detected teams:
Filter(ObjectDetector1.VisionObjects, count > 0)
Assuming that your football team entity is named 'CollegeFootballTeam' and it contains a column 'team_name' that is the name of the team.
Then you can combine the output of this formula with another Filter function which would look like the following:
Filter(
'CollegeFootballTeam',
team_name in (Filter(
ObjectDetector1.VisionObjects,
count > 0
).displayName)
)