Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Improve the quality by applying adaptive threshold in javacv/opencv ?

I'm try to improve my image quality by applying following shareholding to input image.

        CvSize sz = cvSize(img.width(), img.height());
        IplImage gry = cvCreateImage(sz, img.depth(), 1);
        cvCvtColor(img, gry, CV_BGR2GRAY);
        cvAdaptiveThreshold(gry, gry, 255, CV_ADAPTIVE_THRESH_MEAN_C, CV_THRESH_BINARY_INV, 5, 4);

This is my input file

enter image description here

by applying threshold I need to draw all the lines in white and all other areas in black but in my out put there are some missing lines. So please can some one explain how to overcome with this problem ?

This is my out put after applying above threshold.

enter image description here

like image 773
LkDev Avatar asked Dec 05 '25 18:12

LkDev


2 Answers

you should do erosion (cvErode() in opencv) and then dilate (cvDilate()) to get rid of the small speckles. Hope this helps

like image 154
mkuse Avatar answered Dec 09 '25 10:12

mkuse


I hope you've already found the answer, if not.... Try some gaussian blur before you threshold:

Mat image = imread("mX5h6.jpg", IMREAD_GRAYSCALE);
GaussianBlur(image, image, Size(3, 3), 0, 0);
adaptiveThreshold(image, image, 255, CV_ADAPTIVE_THRESH_MEAN_C, CV_THRESH_BINARY_INV, 5, 4);
imshow("image", image);
like image 34
tofi9 Avatar answered Dec 09 '25 10:12

tofi9



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!