1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 00:03:03 +04:00

Merge pull request #14559 from daniel-s-ingram:master

* Fix typo: 'divisble' -> 'divisible'

* Fix typo: 'One of arguments' -> 'One of the arguments'
This commit is contained in:
Daniel Ingram
2019-05-15 11:41:43 -04:00
committed by Alexander Alekhin
parent a70e1eecd9
commit 962d57b4d6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1130,7 +1130,7 @@ public:
CV_Error( Error::StsOutOfRange, "SADWindowSize must be odd, be within 5..255 and be not larger than image width or height" );
if( params.numDisparities <= 0 || params.numDisparities % 16 != 0 )
CV_Error( Error::StsOutOfRange, "numDisparities must be positive and divisble by 16" );
CV_Error( Error::StsOutOfRange, "numDisparities must be positive and divisible by 16" );
if( params.textureThreshold < 0 )
CV_Error( Error::StsOutOfRange, "texture threshold must be non-negative" );