More fixes for iterators-are-pointers case

pull/3561/head
Yuriy Chernyshov 2 years ago
parent c82dea1145
commit 4a7a1f1495
  1. 5
      modules/ximgproc/src/structured_edge_detection.cpp

@ -148,8 +148,9 @@ static cv::Mat rgb2luv(const cv::Mat &src)
lTable[i] = l*maxi;
}
for (int i = 0; i < 40; ++i)
lTable.push_back(*--lTable.end());
for (int i = 0; i < 40; ++i) {
lTable.push_back(*lTable.rbegin());
}
const int nchannels = 3;

Loading…
Cancel
Save