mirror of
https://github.com/opencv/opencv.git
synced 2025-06-13 04:52:53 +08:00
Merge pull request #13364 from nglee:dev_FixLineIteratorExample
This commit is contained in:
commit
ead7bc883d
@ -4819,7 +4819,7 @@ LineIterator it2 = it;
|
|||||||
vector<Vec3b> buf(it.count);
|
vector<Vec3b> buf(it.count);
|
||||||
|
|
||||||
for(int i = 0; i < it.count; i++, ++it)
|
for(int i = 0; i < it.count; i++, ++it)
|
||||||
buf[i] = *(const Vec3b)*it;
|
buf[i] = *(const Vec3b*)*it;
|
||||||
|
|
||||||
// alternative way of iterating through the line
|
// alternative way of iterating through the line
|
||||||
for(int i = 0; i < it2.count; i++, ++it2)
|
for(int i = 0; i < it2.count; i++, ++it2)
|
||||||
|
Loading…
Reference in New Issue
Block a user