Commit 248a35a42ccd3cafc2adacd9d1672243315d27c4

Authored by Josh Klontz
1 parent 067efe21

fixed warning

Showing 1 changed file with 1 additions and 1 deletions
openbr/plugins/draw.cpp
... ... @@ -326,7 +326,7 @@ class AdjacentOverlayTransform : public Transform
326 326 std::vector<cv::Mat> patch_channels;
327 327 cv::split(im, patch_channels);
328 328  
329   - for (int i=0; i < channels.size(); i++)
  329 + for (size_t i=0; i < channels.size(); i++)
330 330 {
331 331 cv::addWeighted(channels[i](target_roi), 0, patch_channels[i % patch_channels.size()], 1, 0,channels[i](target_roi));
332 332 }
... ...