I am using the Canny Edge Detection of the ITK toolkit.
Compared to the OpenCV Canny Detection it seems to be pretty slow. My estimation is 0.5 sec for an image of size 144x176.
Or should the filter run faster?
Thanks for help, Pete
|
I am using the Canny Edge Detection of the ITK toolkit. Compared to the OpenCV Canny Detection it seems to be pretty slow. My estimation is 0.5 sec for an image of size 144x176. Or should the filter run faster? Thanks for help, Pete | ||||
|
feedback
|
|
Off the cuff, that seems a bit slow to me too, but i'll need a lot more info to help.
| |||
|
feedback
|
|
Many filters in ITK were written to be generic, but not necessarily optimized. OpenCV, on the other hand has been heavily optimized. It's not surprising that ITK would be much slower. Because ITK is heavily templated, it relies on the compiler inlining function calls. If you compiled Debug (which might be your default), ITK will be really slow (make that Reaaaaaallllllllyyyyyy sssssslllooooowwwww). Try again after compiling in Release mode. | |||
|
feedback
|