I am working on a Matlab script which applies a Laplacian filter to an image, and plots the result in greyscale. Do you have any suggestion on how to plot it using a colorscale instead?

Here is the code:

A=open('file.fits');
B=A.mcp;
H = fspecial('laplacian', 1); %fspecial creates a filter
I = imfilter(B, H);
figure;
imshow(I,[])
有帮助吗?

解决方案

Use imagesc, or imshow(im2uint8(I), jet(256)).

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top