how we can represent an image in graph in matlab?

3 views (last 30 days)
i need get the data from the images like those from the remote sensed image let me know that if there is any way in matlab to represent the image in graph
  2 Comments
Stephen23
Stephen23 on 1 Sep 2014
Edited: Stephen23 on 1 Sep 2014
Do you mean "graph" in:
  • the mathematical sense, or
  • a colloquial "picture" sense?
If it is the former, the presumably some metrics of an image could be represented in a graph, but this depends on exactly what metrics you want to visualize.
If it is the latter, then the very first result I got searching a major search-engine for the term "matlab image" was for this page:
Perhaps those examples might be of interest to you.
Image Analyst
Image Analyst on 1 Sep 2014
I too, have no idea what this means. Christina, please clarify. Presumably you already know about imread() and multibandread().

Sign in to comment.

Answers (1)

Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh on 1 Sep 2014
Hi Christina,
Do you know that you can simply view the image in MATLAB by using
imshow('c:\mypicture.jpg')
If processing required on the image, you can read the image into MATLAB, perform the process and then view you as above
myPicData = imread('c:\mypicture.jpg')
%%process
imshow(myPicData)
Let us know what exactly you want to do, so that we can help better.

Community Treasure Hunt

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

Start Hunting!