1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

replace cv::Mat to Input/Output arrays

This commit is contained in:
marina.kolpakova
2013-01-09 16:46:21 +04:00
parent 184ae44dea
commit e7bab669fa
3 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ sft::ICFFeaturePool::ICFFeaturePool(cv::Size m, int n) : FeaturePool(), model(m)
fill(nfeatures);
}
void sft::ICFFeaturePool::preprocess(const Mat& frame, Mat& integrals) const
void sft::ICFFeaturePool::preprocess(cv::InputArray frame, cv::OutputArray integrals) const
{
preprocessor.apply(frame, integrals);
}