Adptive thresholding using the integral Image

Source: Internet
Author: User

Derek Bradley * Gerhard Roth

Pseudocode given by the paper:

void vvAdaptiveThreshold( IplImage* inImg, IplImage* outImg){int S = inImg->width >> 5;int T = 10;char *input, *bin;input = inImg->imageData;bin = outImg->imageData;int width = inImg->width;int height = inImg->height;unsigned long* integralImg = 0;int i, j;long sum=0;int count=0;int index;int x1, y1, x2, y2;int s2 = S/2;//bin = new unsigned char[width*height];// create the integral imageintegralImg = (unsigned long*)malloc(width*height*sizeof(unsigned long*));for (i=0; i<width; i++){// reset this column sumsum = 0;for (j=0; j

Please refer to http://blog.csdn.net/hhygcy/article/details/4280165 for this source code

++

Effect

And I ran:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.