how we can represent an image in graph in matlab?

2 visualizzazioni (ultimi 30 giorni)
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 Commenti
Stephen23
Stephen23 il 1 Set 2014
Modificato: Stephen23 il 1 Set 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 il 1 Set 2014
I too, have no idea what this means. Christina, please clarify. Presumably you already know about imread() and multibandread().

Accedi per commentare.

Risposte (1)

Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh il 1 Set 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