We are working on point clouds and we take a photo each 5 seconds. Then, we need to blur some part of the photo (car, person etc ...) with ImageAI this part is done, i just want to remove/disable the bordering box of detected objects. I have put the option to disable names and percentages but i did not see something related to the bounding box. If someone did this, that's would be cool ! Thanks in advance.
Asked
Active
Viewed 124 times
0
-
what library are you using? OpenCV? – Fahim Ahmed Jul 28 '19 at 09:43
-
Yes ImageAi wich is using OpenCV – Stv Jul 28 '19 at 09:45
-
then try to find where ```cv2.rectangle(bounding box params)``` and delete the line hopefully bounding box will be removed. – Fahim Ahmed Jul 28 '19 at 09:49
-
Yes ! that was it ! put your comment as an answer then i can valid it ! Thanks again, you saved my day. – Stv Jul 28 '19 at 12:53
1 Answers
1
If you're using OpenCV, then find where
cv2.reactangle(params)
and then delete the line, your bounding box will be removed.

Fahim Ahmed
- 141
- 11