matlab - 霍夫变换 MATLAB - 自定义实现

标签 matlab hough-transform

我正在尝试在 matlab 中为线条实现霍夫变换。我已经为此苦苦挣扎了好几天,我不知道为什么我的代码没有按应有的方式工作。是的,这是家庭作业的一部分,但请帮助我,因为我完全放弃了。

输入参数:即 - 逻辑“边缘”图像(0 表示不是边缘,1 表示边缘)。

function [out_ro, out_theta]=houghTransform(Ie,nBinsRo,nBinsTheta,tresh)

A = zeros(nBinsRo, nBinsTheta);

theta = 1:nBinsTheta;

theta = scale(theta, nBinsTheta, 1, (pi / 2), - (pi / 2));

D = size(diag(Ie));

D = D(1);

ro = 1:nBinsRo;

ro = scale(ro, nBinsRo, 1, D, -D);

len = size(Ie);

%checks all edges

for i = 1:len(1)

for j = 1:len(2)

    %if it is an edge

    if ((Ie(i,j) == 1))

        %generate all functions x cos(theta) + y sin(theta) = ro
        for m=1:nBinsTheta

            roVal = i * cos(theta(m)) + j * sin(theta(m));

            idx = scale2(roVal, D, -D, nBinsRo, 1);

            if (idx > 0 && idx < nBinsRo)

                A(idx, m) = A(idx, m) + 1;

            end

        end

    end

end

end

figure(1);
clf;
imagesc(A)


% -------------------------------------------------- %

function idx = scale(val, max_val_in, min_val_in, max_val_out, min_val_out)

skalirni_faktor = (max_val_out - min_val_out) / (max_val_in - min_val_in) ;

idx = min_val_out + (val-min_val_in) .* skalirni_faktor;

% -------------------------------------------------- %

function idx = scale2(val, max_val_in, min_val_in, max_val_out, min_val_out)

skalirni_faktor = (max_val_out - min_val_out) / (max_val_in - min_val_in) ;

idx = min_val_out + round((val-min_val_in) .* skalirni_faktor);

非常感谢您的时间和答案。

最佳答案

我找不到代码有什么问题,但我认为缩放是有问题的。

如果有人发现了这一点,这里是霍夫变换的另一种实现。

function [rho,theta,houghSpace] = houghTransform(theImage,thetaSampleFrequency)

%#Define the hough space
theImage = flipud(theImage);
[width,height] = size(theImage);

rhoLimit = norm([width height]);
rho = (-rhoLimit:1:rhoLimit);          
theta = (0:thetaSampleFrequency:pi);

numThetas = numel(theta);
houghSpace = zeros(numel(rho),numThetas);

%#Find the "edge" pixels
[xIndicies,yIndicies] = find(theImage);

%#Preallocate space for the accumulator array
numEdgePixels = numel(xIndicies);
accumulator = zeros(numEdgePixels,numThetas);

%#Preallocate cosine and sine calculations to increase speed. In
%#addition to precallculating sine and cosine we are also multiplying
%#them by the proper pixel weights such that the rows will be indexed by 
%#the pixel number and the columns will be indexed by the thetas.
%#Example: cosine(3,:) is 2*cosine(0 to pi)
%#         cosine(:,1) is (0 to width of image)*cosine(0)
cosine = (0:width-1)'*cos(theta); %#Matrix Outerproduct  
sine = (0:height-1)'*sin(theta); %#Matrix Outerproduct

accumulator((1:numEdgePixels),:) = cosine(xIndicies,:) + sine(yIndicies,:);

%#Scan over the thetas and bin the rhos 
for i = (1:numThetas)
    houghSpace(:,i) = hist(accumulator(:,i),rho);
end

pcolor(theta,rho,houghSpace);
shading flat;
title('Hough Transform');
xlabel('Theta (radians)');
ylabel('Rho (pixels)');
colormap('gray');

end

关于matlab - 霍夫变换 MATLAB - 自定义实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8288759/

相关文章:

c++ - 将矩阵字段设置为 Matlab 结构

opencv - 如何准确检测圆

matlab - 如何在先前在 MATLAB 中绘制的内容之上绘制数据点?

matlab - Datasample - 防止重复采样 - MATLAB

Matlab-直方图熵的比较

opencv - 霍夫变换和openCV

python - TypeError:期望一个单段缓冲区对象

matlab - Simulink 仿真的行为与使用 rk4 的相同仿真有很大不同

c++ - 在 OpenCV 中找到部分隐藏的球

python - 为什么 HoughCircles 没有检测到一个圆圈? minDist 是如何工作的?