retina_ocl.hpp: switched BasicRetinaFilter's members around to fix a -Wreorder warning.

This commit is contained in:
Roman Donchenko 2013-09-06 12:28:59 +04:00
parent bad927325f
commit af594c8e44

View File

@ -160,14 +160,15 @@ public:
}; };
protected: protected:
cv::ocl::oclMat _filterOutput;
cv::ocl::oclMat _localBuffer;
int _NBrows; int _NBrows;
int _NBcols; int _NBcols;
unsigned int _halfNBrows; unsigned int _halfNBrows;
unsigned int _halfNBcolumns; unsigned int _halfNBcolumns;
cv::ocl::oclMat _filterOutput;
cv::ocl::oclMat _localBuffer;
std::valarray <float>_filteringCoeficientsTable; std::valarray <float>_filteringCoeficientsTable;
float _v0; float _v0;
float _maxInputValue; float _maxInputValue;