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',...
1 view (last 30 days)
Show older comments
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 Comments
Walter Roberson
on 23 Aug 2012
What error message are you getting, and on which line of which routine?
Answers (3)
madhuri kalapala
on 24 Aug 2012
1 Comment
Walter Roberson
on 24 Aug 2012
What error message are you getting, and on which line of which routine?
madhuri kalapala
on 25 Aug 2012
Edited: Walter Roberson
on 25 Aug 2012
3 Comments
Walter Roberson
on 29 Aug 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
on 29 Aug 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.
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!