1 /**
2 Module introduces various corner detection algorithms.
3 
4 <big>Currently present corner detectors:</big>
5 <ul>
6 <li>$(LINK2 https://dcv.dlang.io/?loc=dcv.features.corner.harris.html,Harris)</li>
7 <li>$(LINK2 https://dcv.dlang.io/?loc=dcv.features.corner.harris.html,Shi-Tomasi)</li>
8 <li>$(LINK2 https://dcv.dlang.io/?loc=dcv.features.corner.fast.package.html,FAST)</li>
9 </ul>
10 
11 Copyright: Copyright Relja Ljubobratovic 2016.
12 
13 Authors: Relja Ljubobratovic
14 
15 License: $(LINK3 http://www.boost.org/LICENSE_1_0.txt, Boost Software License - Version 1.0).
16 */
17 
18 module dcv.features.corner;
19 
20 public import dcv.features.corner.harris, dcv.features.corner.fast;