multispectral satellite image processing?
Mostra commenti meno recenti
Hi i have a multispectral satellite image with 12 band and his size is 4195*3692.
How can i open the differents band and print an RGB image and also make vegetation indice with the different bands?
Thanks for your help!
5 Commenti
Shunichi Kusano
il 16 Mag 2019
What is data format? geotiff or any other?
Gamliel Roos
il 17 Mag 2019
Shunichi Kusano
il 24 Mag 2019
Sorry for my late reply.
OK, you have a tiff file. ENP file is a pyramid file for accelerating the image display, which is not image data.
You can open it by imread command, normally. Have you tried it?
After reading the file, you will have a array with 4195x3692x12.
img = imread('your_image.tif');
size(img) % 4195x3692x12
You can extract single band image:
lyri = 1; % depending on the layer index you want
img1 = img(:,:,lyri);
You need to know the layer index you need. The band information would be available in the web. (For example, Landsat-8 has 11 bands (layers). The band information is here.)
If you want to calculate vegetation indices (NDVI?), you need two layers, "red" band and "near infrared" band. (In the case of Landsat-8, they are 4th and 5th band, respectively)
% this is the example for Landsat-8
red = img(:,:,4); % red band
nir = img(:,:,5); % near infrared band
Finally, NDVI is computed according to the definition:
ndvi = (nir - red) / (nir + red);
hope this helps.
Gamliel Roos
il 24 Mag 2019
sanjay singh
il 7 Dic 2019
after calculating NDVI, how can i export the NDVI image into ENVI for further processing?
Risposte (0)
Categorie
Scopri di più su Web Map Service in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!