Open ReneeDeLuca opened 3 months ago
From instructions during lab
... for detected_people in result.people: Draw object bounding box if confidence > 50% if detected_people.confidence > 0.5: ...
... for detected_people in result.people:
>
if detected_people.confidence > 0.5: ...
next step in the lab is to run
python detect-people.py
returns a syntax error, fixed by changing > to >=
>=
This seems to be a bug in the way the Skillable environment renders code in the instructions.
From instructions during lab
next step in the lab is to run
returns a syntax error, fixed by changing
>
to>=