1 module dcv.features;
2 
3 /**
4  * Feature detection and matching module.
5  * 
6  * v0.1 norm:
7  * harris
8  * shi-tomasi
9  * fast (wrap C version by author: http://www.edwardrosten.com/work/fast.html
10  * most popular blob detectors - sift, ???
11  * dense features - hog
12  * 
13  * v0.1+:
14  * other popular feature detectors, descriptor (surf, brief, orb, akaze, etc.)
15  */
16 
17 public import dcv.features.corner, dcv.features.utils;