-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#5 Missing bounding boxes problem #9
Comments
Hi! Are you using the semantic lidar-based method? If yes, can you make visualization like what you did here? Maybe it's because the vehicle's position is out of the LIDAR's upper fov range. |
Hello, |
Sorry for my late reply. Right, the current version of depth-based annotation still suffer from false negative problem. There are several reasons that can cause it:
In case you haven't read the details of the algorithm, you can find it here. Thank you. |
Hello again, When I tried to collect data at 60fps with the following orientation of camera: The problem is: I think due to FOV it gets the information and couldn't deal how can we eliminate these. Could you please help me with this? Below I am attaching the picture along with the bbox txt file for reference. TIA |
Hello @MukhlasAdib |
Ah right, sorry. It looks like a bug in the algorithm. So I need to look deeper into the problem. I will inform you if I get something, but I cannot promise you it will be fast. |
@rak7045 Are you using semantic LIDAR or depth camera? |
Hello, |
Yeah, looks like it has something to do with the angle filter and your specific rotation setting. I need some time to check it. But for temporary solution, you can add a simple pixel coordinate filter by yourself before saving the results. Something like if any(bbox[:,1] < 0) or any(bbox[:,1] > IMAGE_HEIGHT):
# remove the bbox
elif any(bbox[:,0] < 0) or any(bbox[:,0] > IMAGE_WIDTH):
# remove the bbox
else:
# keep the bbox |
Hello again,
I am collecting data for a CNN network to learn. As already mentioned in #5 about missing Bboxes in the field of view has been solved. I see the problem still persists.
I attached a sensor to a car. The Altitude (z-axis) and the Picth angle of the camera changes according to the requirements.
While collecting the data the missing bboxes occurs. I am attaching the picture for reference
The sensor which is attached to the object is stationary due to traffic signal. Then, a car has appeared in the frame as shown above.
The above image is the frame where the car entered and after for some frames the object has bounding box to it.
While the object is at the end i.e while leaving it has no bounding box to it. This problem has appeared for each requirement we collected.
Do you have an idea on this how to solve the problem?
TIA
Regards
Ravi
The text was updated successfully, but these errors were encountered: