Numerical Analysis of changes happening in subsequent image difference
Show older comments
Suppose I have 25 images. Next, I subtract the 1st image from subsequent images. It means now I have (2nd-1st), (3rd-1st), (4th-1st).....(24th-1st) and (25th-1st) images. Suppose I name these differences asas T21, T31, T41,....,T241 and T251 respectively. I want to analyze the changes happening between these i.e. between T21 and T31, between T31 and T41 and so on. I am able to see these changes as an image but how can I visualize it numerically and quantitatively?
Can anyone please suggest some methods to analyze and visualize these changes?
In case my query is not clear, feel free to write.
Accepted Answer
More Answers (1)
Avinash
on 12 Jan 2023
0 votes
As per my understanding , you are trying to subtract one image from many other images, and want to see the difference between the images in the form of numeric data
- First, you can read images using “imread” function
- Then using a for loop, you can subtract one image from other images using “imsubtract” function
- The output result of “imsubtract” function is a numeric value.
You can refer to the following links to know more about “imread” & “imsubtract” functions
Thanks
Avinash
3 Comments
NAVNEET NAYAN
on 12 Jan 2023
Avinash
on 23 Jan 2023
Can you elaborate your query,
NAVNEET NAYAN
on 24 Jan 2023
Categories
Find more on Image Preview and Device Configuration in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!