hello
I want to find the change in a same image after some interval of time.How can i do this in matlab?
Please suggest me the ideas.

댓글 수: 4

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 7월 8일
편집: KALYAN ACHARJYA 2019년 7월 8일
Please define what does change mean here? Any parameters.
It would be helpful to answer, if yo elaborate more.
To change on image you can do the number of ways-
  1. Add Noise
  2. Airthmetic Operations
  3. Transform
  4. Pixel value modification......
.........
Shilpi Gupta
Shilpi Gupta 2019년 7월 8일
Thank you for your reply sir.
change means the change in the properties of an image.
I want to see the difference in the same image after some number of days.
KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 7월 8일
@Shilpi Which properties? Properties represents broad sense, please name the terms
Walter Roberson
Walter Roberson 2019년 7월 8일
The only real properties that images have, for MATLAB purposes, are:
  1. size
  2. datatype
  3. RGB versus pseudocolor
  4. mapping of data ranges to color (caxis)
  5. callbacks

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

답변 (1개)

Bjorn Gustavsson
Bjorn Gustavsson 2019년 7월 8일

1 개 추천

The only meaningful interpretation I can come up with is that you have two images of the same scene taken from a static camera ("the same image" if only stored on disc will be constant over time or corrupted...). For that I'll assume that you have constant illumination of your scene. Then do something like this:
Im1 = imread('img1.png'); % or whatever filename
Im2 = imread('img2.png'); % or whatever filename
Im1 = double(Im1);
Im2 = double(Im2);
dImg = Im2 -Im1;
dImg = (dImg-min(dImg(:)))/(max(dImg(:))-min(dImg(:)));% Should map difference to between 0-1
imagesc(dImg)
HTH

카테고리

도움말 센터File Exchange에서 Image Processing and Computer Vision에 대해 자세히 알아보기

제품

릴리스

R2013a

질문:

2019년 7월 8일

답변:

2019년 7월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by