code ideas in matlab for agricultural land detection

14 Ansichten (letzte 30 Tage)
nida
nida am 9 Jan. 2014
Kommentiert: nida am 13 Jan. 2014
i am on a project in matlab where my code has to decide whether a image of land is agricultural. image should be a top satellite view of the land. combining functionality of land and matlab workspace i found only one relation that is of color of land in image. how to proceed with the project.

Antworten (2)

Image Analyst
Image Analyst am 9 Jan. 2014
You need to do some more research first into multispectral remote sensing algorithm. For that, go here: http://iris.usc.edu/Vision-Notes/bibliography/contentscartog.html#Cartography,%20Aerial%20Images,%20Remote%20Sensing,%20Buildings,%20Roads,%20Terrain,%20ATR. Once you pick an algorithm and code it up, we can help you with the MATLAB code. We don't do complicated algorithm development here.
  11 Kommentare
Image Analyst
Image Analyst am 11 Jan. 2014
What about them? You get the name from the edit field and pass it to your m-file like I already showed you.
theURLFilename = get(handles.editLink, 'String');
theImage = imread(theURLFilename);
[out1, out2] = other_m_file(theImage , in2, in3); % or whatever...
Or you can pass just the filename string into your m-file instead of the image array after it's been read in:
theURLFilename = get(handles.editLink, 'String');
[out1, out2] = other_m_file(theURLFilename , in2, in3); % or whatever...
It's really however you want to do it.
nida
nida am 13 Jan. 2014
is there a way to 3d plot a 2d image like from this </matlabcentral/answers/uploaded_files/6759/7.jpg>
to this
</matlabcentral/answers/uploaded_files/6760/2.jpg> and ploting should rely on image data. thanks

Melden Sie sich an, um zu kommentieren.


Ryan Johnson
Ryan Johnson am 9 Jan. 2014
May or may not be useful for you, but the latest issue of the IEEE Signal Processing Magazine is entirely dedicated to hyperspectral remote sensing and classification.

Kategorien

Mehr zu Agriculture finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by