Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
spmallick committed Feb 23, 2015
2 parents 1194a6c + 77b9687 commit d8f8b83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# learnopencv
Learn OpenCV : C++ and Python Examples
Learn OpenCV : C++ and Python Examples. You can find a details at [LearnOpenCV.com](http://www.LearnOpenCV.com)
4 changes: 2 additions & 2 deletions Threshold/threshold.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ int main( int argc, char** argv )
threshold(src,dst,0, 255, THRESH_BINARY);
imwrite("opencv-threshold-example.jpg", dst);

// Thresholding with maxval set to 128
threshold(src, dst, 0, 128, THRESH_BINARY);
// Thresholding with maxval set to 128
threshold(src, dst, 0, 128, THRESH_BINARY);
imwrite("opencv-thresh-binary-maxval.jpg", dst);

// Thresholding with threshold value set 127
Expand Down

0 comments on commit d8f8b83

Please sign in to comment.