我做了高斯滤镜,图像成为索引。我必须使用imagesc
来显示确定颜色差异。如何将其转换为rgb以便我可以进一步处理。
已编辑添加了一些图片,顶部分别是'原始图片','imshow(C)','imagesc(C)'。然后我只想让'C'变量像imagesc image一样。有可能??
已编辑以下是我的编码,请参阅高斯开头
% Read Image
rgb = imread('barcode.jpg');
% Resize Image
rgb = imresize(rgb,0.33);
%figure(),imshow(rgb);
% Convert from RGB to Gray
Igray = rgb2gray(rgb);
BW2 = edge(Igray,'canny');
%figure(),imshow(BW2);
% Perform the Hough transform
[H, theta, rho] = hough(BW2);
% Find the peak pt in the Hough transform
peak = houghpeaks(H);
% Find the angle of the bars
barAngle = theta(peak(2));
J = imrotate(rgb,barAngle,'bilinear','crop');
%figure(),imshow(J);
Jgray = double(rgb2gray(J));
% Calculate the Gradients
[dIx, dIy] = gradient(Jgray);
%if min(dIx(:))<= -100 && max(dIx(:))>=100 || min(dIy(:))<=-100 && max(dIy(:))>=100
if barAngle <= 65 && barAngle >=-65 && min(dIx(:))<= -100
B = abs(dIx) - abs(dIy);
else
B = abs(dIy) - abs(dIx);
end
% Low-Pass Filtering
H = fspecial('gaussian', 20, 10);
C = imfilter(B, H);
C = imclearborder(C);
figure(),imshow(C);
figure(),imagesc(C);colorbar;
答案 0 :(得分:1)
RGB = ind2rgb(X,map)
RGB此时只是眼花缭乱,你不能神奇地添加不存在的信息。
修改
在您的代码中,C
是一个灰度图像,因为B
是灰度的,这是因为它是由渐变dIx
和{dIy
组成的。 {1}}来自图片,您自己使用行Jgray = double(rgb2gray(J));
明确地制作灰度