glemaitre / traffic-sign-detection

Real-time traffic sign detection using Gielis curves
Other
108 stars 61 forks source link

How to make it real-time and for video? #14

Open kuonangzhe opened 7 years ago

kuonangzhe commented 7 years ago

Awesome work! Here are several concerns from my using.

First, it said that the program runs in real-time. However, I run the sample test as the Readme said: "../bin/main ../test-images/different0035.jpg" but got a really long time to run: "Elapsed time: 9864.11 ms" Do you know how I can make it run in real-time?

Second, for real-time, it should be running on video or a webcam. Do you have any suggestions or code for video testing?

Thank you so much!

glemaitre commented 7 years ago

Do you know how I can make it run in real-time? Parallel processing can be a way since that we are searching 4 shapes at the same time. We can also constraints the optimizer avoiding and early stopping for crazy shape.

kuonangzhe commented 7 years ago

@glemaitre Thanks for the reply! So do you mean that only mannually modify the code to be parallel processing can make the code real-time? Do you have an experimental result about the FPS when it is in parallel running?

Thank you so much for the help!

glemaitre commented 7 years ago

nop I don't have results but it was something that I wanted to do when I was working on this project.

kuonangzhe commented 7 years ago

@glemaitre Sure, got you! Thank a lot! I will see how to accelerate the algorithm for the real-time purpose :)