i have a jpg image.i want to find vegetative area and count trees in that image.im able to count trees but for finding veg i hav used mathworks demo im getting error in CIR = multibandread('paris.lan', [512, 512, 7], 'uint8=>uint8',...
Afficher commentaires plus anciens
i have a jpg image.i want to find vegetative area and count trees in that image.im able to count trees but for finding veg i hav used mathworks demo im getting error in CIR = multibandread('paris.lan', [512, 512, 7], 'uint8=>uint8',... plzz help me to find vegatation in jpg image with example
2 commentaires
Walter Roberson
le 23 Août 2012
What error message are you getting, and on which line of which routine?
Réponses (3)
madhuri kalapala
le 24 Août 2012
0 votes
1 commentaire
Walter Roberson
le 24 Août 2012
What error message are you getting, and on which line of which routine?
madhuri kalapala
le 25 Août 2012
Modifié(e) : Walter Roberson
le 25 Août 2012
3 commentaires
Walter Roberson
le 25 Août 2012
Modifié(e) : Walter Roberson
le 25 Août 2012
What error message is given? For example is it saying "Index out of bounds"? Is it saying "Objects of type handle cannot be combined with uint8 in arithmetic operations" ? Is it saying "Dimension mismatch" ? Is it saying "Unknown function multibandread for argument string" ?
Assume that I am not going to bother to download the code and image until you provide the actual error message and traceback.
madhuri kalapala
le 29 Août 2012
Walter Roberson
le 29 Août 2012
I have now looked on the projectblessings web site, but I do not see any multiband images there, or anything named paris.lan or sat.jpg ? The images I see on that Tornado Path page have URLs such as http://www.projectblessings.org/store/project_photos/large/project_225.jpg and are plain images rather than satellite images.
Image Analyst
le 29 Août 2012
The JPEG image probably has only 3 bands, red, green, and blue, it doesn't have bands 4 etc. So you should have
{'Band','Direct',[1 1 3]}
The number in brackets is [startBand, increment, stopBand] so look what happens with your numbers:
>> 4:3:2
ans =
Empty matrix: 1-by-0
No wonder it doesn't work.
Catégories
En savoir plus sur Blocked Images dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!