mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 15:53:03 +04:00
Fixed some issues found by static analysis (4th round)
This commit is contained in:
@@ -776,6 +776,7 @@ BRISK_Impl::computeDescriptorsAndOrOrientation(InputArray _image, InputArray _ma
|
||||
const BriskShortPair* max = shortPairs_ + noShortPairs_;
|
||||
for (BriskShortPair* iter = shortPairs_; iter < max; ++iter)
|
||||
{
|
||||
CV_Assert(iter->i < points_ && iter->j < points_);
|
||||
t1 = *(_values + iter->i);
|
||||
t2 = *(_values + iter->j);
|
||||
if (t1 > t2)
|
||||
|
||||
Reference in New Issue
Block a user