| 14 | namespace af { |
| 15 | |
| 16 | features fast(const array& in, const float thr, const unsigned arc_length, |
| 17 | const bool non_max, const float feature_ratio, |
| 18 | const unsigned edge) { |
| 19 | af_features temp; |
| 20 | AF_THROW(af_fast(&temp, in.get(), thr, arc_length, non_max, feature_ratio, |
| 21 | edge)); |
| 22 | return features(temp); |
| 23 | } |
| 24 | |
| 25 | } // namespace af |