[Image Processing] _ logarithm Transformation

Source: Internet
Author: User

 

[Image Processing] _ logarithm Transformation Algorithm Implementation

Logarithm transformation can achieve horizontal translation, vertical translation, symmetric transformation, and other operations of the image

It can also expand and compress images in gray scale.

The implementation code is as follows:

 

</PRE> <PRE name = "code" class = "CPP"> int logtranslation (MAT srcimg, mat dstimg, float a, float B, float C) {mat logtable (1,256, cv_8u); double temp; For (INT I = 0; I <256; I ++) {temp = Log (double) I + 1) /B + A; // logarithm transformation g (x, y) = ln (f (x, y) + 1)/(B * ln (c) +; if (temp <0.0) {temp = 0.0;} else if (temp> 255.0) {temp = 255.0;} logtable. data [I] = int (temp + 0.5); // rounding} LUT (srcimg, logtable, dstimg); imshow ("log", dstimg); waitkey (0 ); return 1 ;}


[Image Processing] _ logarithm Transformation

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.