1
2
3
4
5
6
7
8
9
10
11
12
13
| #import "GPUImageHarrisCornerDetectionFilter.h"
|
| /** Shi-Tomasi feature detector
|
| This is the Shi-Tomasi feature detector, as described in
| J. Shi and C. Tomasi. Good features to track. Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 593-600, June 1994.
| */
|
| @interface GPUImageShiTomasiFeatureDetectionFilter : GPUImageHarrisCornerDetectionFilter
|
| // Compared to the Harris corner detector, the default sensitivity value for this detector is set to 1.5
|
| @end
|
|