mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-20 04:25:42 +08:00
optflow: apply CV_OVERRIDE/CV_FINAL
This commit is contained in:
@@ -117,8 +117,8 @@ public:
|
||||
float _sparseRate = 0.024, float _retainedCornersFraction = 0.2,
|
||||
float _occlusionsThreshold = 0.0003, float _dampingFactor = 0.00002, float _claheClip = 14 );
|
||||
|
||||
void calc( InputArray I0, InputArray I1, InputOutputArray flow );
|
||||
void collectGarbage();
|
||||
void calc( InputArray I0, InputArray I1, InputOutputArray flow ) CV_OVERRIDE;
|
||||
void collectGarbage() CV_OVERRIDE;
|
||||
|
||||
private:
|
||||
void findSparseFeatures( UMat &from, UMat &to, std::vector<Point2f> &features,
|
||||
|
@@ -182,9 +182,9 @@ private:
|
||||
public:
|
||||
void train( GPCTrainingSamples &samples, const GPCTrainingParams params = GPCTrainingParams() );
|
||||
|
||||
void write( FileStorage &fs ) const;
|
||||
void write( FileStorage &fs ) const CV_OVERRIDE;
|
||||
|
||||
void read( const FileNode &fn );
|
||||
void read( const FileNode &fn ) CV_OVERRIDE;
|
||||
|
||||
unsigned findLeafForPatch( const GPCPatchDescriptor &descr ) const;
|
||||
|
||||
|
Reference in New Issue
Block a user