Make transparent overlay heat map of same dimensions to tiff?
16 views (last 30 days)
Show older comments
When i overlay the image and heatmap they are different dimensions and the heatmap is solid when i need it to be transparent below a certain threshold. Any ideas?
overSMA = imread('binaryp60SMA .tif')
imshow(overSMA)
hold on
A = pcolor(finalM60);
shading interp;
set(gca, 'clim', [0 0.08]);
colormap([0 0 0; jet]);
colorbar;
shading interp;
axis equal
colormap parula
colorbar;
0 Comments
Answers (1)
See Also
Categories
Find more on Colormaps in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!