Skip to content

Commit

Permalink
Merge pull request opencv#5334 from UnaNancyOwen:fix2_LineAA
Browse files Browse the repository at this point in the history
  • Loading branch information
vpisarev committed Sep 14, 2015
2 parents 8b33c6f + b23e536 commit fb4b4cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/core/src/drawing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -608,12 +608,12 @@ LineAA( Mat& img, Point pt1, Point pt2, const void* color )
ICV_PUT_POINT();
ICV_PUT_POINT();

tptr += step;
tptr += 4;
a = (ep_corr * FilterTable[dist] >> 8) & 0xff;
ICV_PUT_POINT();
ICV_PUT_POINT();

tptr += step;
tptr += 4;
a = (ep_corr * FilterTable[63 - dist] >> 8) & 0xff;
ICV_PUT_POINT();
ICV_PUT_POINT();
Expand Down

0 comments on commit fb4b4cb

Please sign in to comment.