代码搜索:如何学习 hough?
找到约 10,000 项符合「如何学习 hough?」的源代码
代码结果 10,000
www.eeworm.com/read/433003/8554639
p hough.p
www.eeworm.com/read/286908/8737800
c hough.c
#include
#include
#include
#include
//#include "hough.h"
//#include "IM1.h"
/*------hough.h--------*/
#define R_TO_D 0.017453
/*---------------
www.eeworm.com/read/386504/8739627
c hough.c
/*********************************************************************
* This file is part of the PRAPI library.
*
* Copyright (C) 2002 Topi M鋏np滗
* All rights reserved.
*
* This program is free
www.eeworm.com/read/386504/8739631
h hough.h
/*********************************************************************
* This file is part of the PRAPI library.
*
* Copyright (C) 2001-2002 Topi M鋏np滗
* Copyright (C) 2001 Jaakko Viertola
* All
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