how we can represent an image in graph in matlab?

1 Ansicht (letzte 30 Tage)
Christina
Christina am 1 Sep. 2014
Kommentiert: Image Analyst am 1 Sep. 2014
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 Kommentare
Stephen23
Stephen23 am 1 Sep. 2014
Bearbeitet: Stephen23 am 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 am 1 Sep. 2014
I too, have no idea what this means. Christina, please clarify. Presumably you already know about imread() and multibandread().

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh am 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!

Translated by