Box counting method in a tif image
조회 수: 4 (최근 30일)
표시 이전 댓글
Hi. I have a satellite image band 2 in tiff format, I want to use this image to make the box counting method. I used this code, but my image is black. How I can resolve this?
c = imread('B2.tif'); imagesc(~c) colormap gray axis square
댓글 수: 0
채택된 답변
Christopher McCausland
2022년 7월 21일
Hi Arlete,
If you could share the image that would be great.
Having a look at your code the ~ will turn 'c' into a logical array. Try this instead;
c = imread('B2.tif');
imagesc(c) % note the removed ~
Let me know if that helps,
Christopher
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!