Image processing with an exponential function

조회 수: 4 (최근 30일)
MRC
MRC 2012년 5월 29일
I need to run the exponential function on an image. Could someone help with the code to perform this operation? exp('image.jpg') doesn't work. Also if you have any other functions I could try on my images.
  댓글 수: 1
MRC
MRC 2012년 5월 30일
I want to see the effects of using this type of function on my image. Once I apply the exponential function then I will run the image thru the heat equation. I want to smooth my image but I need something more than the heat equation. So I am looking at different function(exponential, trigonometric and others) and looking at what happens to the images.

댓글을 달려면 로그인하십시오.

답변 (2개)

Image Analyst
Image Analyst 2012년 5월 30일
I have no idea what you want to do. Do you want (for some reason) "e" raised to the power of the gray level of the image???? If so, for what purpose?

Walter Roberson
Walter Roberson 2012년 5월 30일
MyImage = imread('image.jpg');
exp(MyImage)
  댓글 수: 2
MRC
MRC 2012년 5월 30일
This doesn't work.
Walter Roberson
Walter Roberson 2012년 5월 30일
exp(double(MyImage))

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by