Fill below the 3D terrain data
A=imread(‘appRasterNEDAPIService1708354512850-756880040.tif’);
X=1:324;
Y=1:194;
[X,Y]=meshgrid(X,Y);
surf(X,Y,A)
Hello. I have this terrain data. The size of A matrix is 194×324 and contain elevation data. I want to fill below the terrain from the elevation of the data to the 0 (mean sea level). I use fill code
hFill = fill3(X, Y, A, patchColor, ‘LineWidth’, 1, ‘EdgeColor’, patchColor, …
‘FaceAlpha’, 0.5);
However, it only fill below the surface with thin layer. I try to fill from the elevation to the 0 (mean sea level).
Thank you,A=imread(‘appRasterNEDAPIService1708354512850-756880040.tif’);
X=1:324;
Y=1:194;
[X,Y]=meshgrid(X,Y);
surf(X,Y,A)
Hello. I have this terrain data. The size of A matrix is 194×324 and contain elevation data. I want to fill below the terrain from the elevation of the data to the 0 (mean sea level). I use fill code
hFill = fill3(X, Y, A, patchColor, ‘LineWidth’, 1, ‘EdgeColor’, patchColor, …
‘FaceAlpha’, 0.5);
However, it only fill below the surface with thin layer. I try to fill from the elevation to the 0 (mean sea level).
Thank you, A=imread(‘appRasterNEDAPIService1708354512850-756880040.tif’);
X=1:324;
Y=1:194;
[X,Y]=meshgrid(X,Y);
surf(X,Y,A)
Hello. I have this terrain data. The size of A matrix is 194×324 and contain elevation data. I want to fill below the terrain from the elevation of the data to the 0 (mean sea level). I use fill code
hFill = fill3(X, Y, A, patchColor, ‘LineWidth’, 1, ‘EdgeColor’, patchColor, …
‘FaceAlpha’, 0.5);
However, it only fill below the surface with thin layer. I try to fill from the elevation to the 0 (mean sea level).
Thank you, image processing MATLAB Answers — New Questions