1 | initial version |
Remove the int
around Output_image.at<uchar>(x,y)
.
2 | No.2 Revision |
Remove the int
around Output_image.at<uchar>(x,y)
.
Another stylistic thing:
Output_image.at<uchar>(x,y) = ( y % 2 ) ? image_5.at<uchar>(x,y) : image_3.at<uchar>(x,y);