代码搜索:hough 开发教程
找到约 10,000 项符合「hough 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/177913/9427007
txt hough.txt
function [x,y,r,count]=hough(BW1,x0,y0,r0,rr)
% BW1为输入的需检测的圆图象的矩阵,[x0,y0]为估算的定位中心的位置,r0为估算的定位的半径,rr是检测范围的外扩值
[m,n]=size(BW1);
%确定搜索范围,搜索的矩形的四个定点为[e3,e1],[e3,e2],[e4,e1],[e4,e2]
www.eeworm.com/read/372436/9510842
pdf hough.pdf
www.eeworm.com/read/371924/9530548
p hough.p
www.eeworm.com/read/359900/10116907
m hough.m
function [h, theta, rho] = hough(f, dtheta, drho)
%HOUGH Hough transform.
% [H, THETA, RHO] = HOUGH(F, DTHETA, DRHO) computes the Hough
% transform of the image F. DTHETA specifies the spacing
www.eeworm.com/read/278399/10537481
c hough.c
void Hough(int InRow,int InCol,unsigned char **InImg,int *Thita,int *Radia)
{
int nThita,nRadia,i,j,Max,TranRow,TranCol,**TranImg;
float *sc,*ss,*sk;
sc = (float *)fspace_1d(2*MAXANG
www.eeworm.com/read/423076/10589443
p hough.p
www.eeworm.com/read/277085/10669774
p hough.p
www.eeworm.com/read/418342/10952840
m hough.m
function [h, theta, rho] = hough(f, dtheta, drho)
%HOUGH Hough transform.
% [H, THETA, RHO] = HOUGH(F, DTHETA, DRHO) computes the Hough
% transform of the image F. DTHETA specifies the spacing
www.eeworm.com/read/270320/11042106
p hough.p
www.eeworm.com/read/470577/6913967
txt hough.txt
BOOL Hough(HWND hWnd)
{
//定义直线结构
typedef struct{
int topx;
int topy;
int botx;
int boty;
}MYLINE;
//内存
DWORD BufSize;
//文件信息头指针
LPBITMAPINFOHEADER lpImgData;