代码搜索:hough 有哪些应用?
找到约 10,000 项符合「hough 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/158278/11628824
m hough.m
% Hough 变换
i=imread('test.bmp');
i=rgb2gray(i);
i_long =size(i,1);
i_width=size(i,2);
i_edge=edge(i,'robert');
i_hough=zeros(300,300);
theta_step=3.14*2/299;
theta=0:theta_step:2*3.14;
x_ma
www.eeworm.com/read/261221/11657848
m hough.m
function [h] = Hough(image)
%Function to perform Hough Transform on an image
%Inputs: image
%Returns: h
%
%image: It is the input image.
%h: It is the accumulator array
%
%Example:
%
www.eeworm.com/read/261221/11657855
m hough(old).m
function h = hough(f)
%Function to perform Hough Transform on an image
%Inputs: f
%Returns: h
%
%f: It is the input image.
%h: It is the accumulator array
%
%Example:
% h = Hough(image
www.eeworm.com/read/157589/11688099
p hough.p
www.eeworm.com/read/256528/11990853
p hough.p
www.eeworm.com/read/337915/12333441
p hough.p
www.eeworm.com/read/132021/14113439
m hough.m
function [h,theta,rho] = hough(f,dtheta,drho)
if nargin < 3
drho = 1;
end
if nargin
www.eeworm.com/read/119285/14834351
m hough.m
function res=hough(im,RHO_MAX,THETA_MAX)
% USE: res=hough(im,RHO_MAX,THETA_MAX)
%
% Name: hough
%
% Version:
% v2.0
%
% Author: Dimitrios Ioannou
% dimitris@cyra.com
%
%
% Date:
www.eeworm.com/read/210588/15195491
c hough.c
/* EXISTS AN INTERFACE PROGRAM TO MATLAB : ---MEX.c *
*====================================================================*
* Name of the function :
www.eeworm.com/read/14134/305581
txt hough变换.txt
/*************************************************************************
*
* 函数名称:
* HoughDIB()
*
* 参数:
* LPSTR lpDIBBits - 指向源DIB图像指针
* LONG lWidth - 源图像宽度(象素数,必须是4的倍数