代码搜索:如何学习 hough?
找到约 10,000 项符合「如何学习 hough?」的源代码
代码结果 10,000
www.eeworm.com/read/435371/7792792
txt hough.txt
#include
#include
#include
int main(int argc, char** argv)
{
IplImage* img = cvLoadImage("circle.jpg", 1);;
IplImage* gray = cvCreateImage(cvGetSize(img), 8
www.eeworm.com/read/397761/8023944
m hough.m
%tic
function res=hough(im,RHO_MAX,THETA_MAX)
[X,Y]=size(im);
d_rho=X/RHO_MAX;
d_theta=pi/THETA_MAX;
theta=-pi/4:d_theta:pi-pi/4-d_theta;
smat=sin(theta);
cmat=cos(theta);
[x,y]=
www.eeworm.com/read/245740/12782786
m hough.m
function [h,theta,rho]=hough(f,dtheta,dtho)
%HOUGH Hough transform.
% [H,THETA,THO] = HOUGH(F,DTHETA,DRHO) computes the Hough transform of
% the image F. DTHETA specifies the spacing (in degree
www.eeworm.com/read/326135/13163399
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/138714/13221344
txt hough变换.txt
BOOL Hough(HWND hWnd)
{
//定义直线结构
typedef struct{
int topx;
int topy;
int botx;
int boty;
}MYLINE;
//内存
DWORD BufSize;
//文件信息头指针
LPBITMAPINFOHEADER lpImgData;
www.eeworm.com/read/138117/13259670
m hough.m
function res=hough100(im,RHO_MAX,THETA_MAX)
if (nargin~=3 | nargout~=1)
fprintf(1,'Correct use: res=hough2(im,RHO_MAX,THETA_MAX).\n');
error('Exiting...\n');
end
[X,Y]=size(im);
if X~=Y
fprintf(1
www.eeworm.com/read/239440/13279109
txt hough变换.txt
/*************************************************************************
*
* 函数名称:
* HoughDIB()
*
* 参数:
* LPSTR lpDIBBits - 指向源DIB图像指针
* LONG lWidth - 源图像宽度(象素数,必须是4的倍数
www.eeworm.com/read/136705/13365091
c hough.c
short WINAPI HoughLineDIB(LPSTR lpDIBBits, LONG lWidth, LONG lHeight,int threshold,int& iAngle,int& iDistance)
{
// 符合要求的直线总数
int allline;
// 指向源图像的指针
LPSTR lpSrc;
// 指向缓存图像的指针
LPSTR
www.eeworm.com/read/316397/13523656
m hough.m
function [h, theta, rho] = hough(varargin)
%HOUGH Hough transform.
% HOUGH implements the Standard Hough Transform (SHT). HOUGH is designed
% to detect lines. It uses the parametric representat
www.eeworm.com/read/308039/13710890