mirror of
https://github.com/opencv/opencv.git
synced 2026-07-21 19:33:03 +04:00
Merge remote-tracking branch 'upstream/3.4' into merge-3.4
This commit is contained in:
@@ -587,8 +587,8 @@ void DpSeamFinder::computeGradients(const Mat &image1, const Mat &image2)
|
||||
bool DpSeamFinder::hasOnlyOneNeighbor(int comp)
|
||||
{
|
||||
std::set<std::pair<int, int> >::iterator begin, end;
|
||||
begin = lower_bound(edges_.begin(), edges_.end(), std::make_pair(comp, std::numeric_limits<int>::min()));
|
||||
end = upper_bound(edges_.begin(), edges_.end(), std::make_pair(comp, std::numeric_limits<int>::max()));
|
||||
begin = edges_.lower_bound(std::make_pair(comp, std::numeric_limits<int>::min()));
|
||||
end = edges_.upper_bound(std::make_pair(comp, std::numeric_limits<int>::max()));
|
||||
return ++begin == end;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user