代码搜索:如何学习 hough?
找到约 10,000 项符合「如何学习 hough?」的源代码
代码结果 10,000
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;
www.eeworm.com/read/467295/7009372
p hough.p
www.eeworm.com/read/466801/7020894
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/457710/7319121
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/457710/7319124
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/448241/7536090
m hough.m
function [res,h3,pts]=hough(im,RHO_MAX,THETA_MAX)
% Usage: [res,h3,pts]=hough(im,RHO_MAX,THETA_MAX)
%
% Name: hough(im,RHO_MAX,THETA_MAX)
%
% Version: v1.0
%
% Author: Dimitrios Ioannou
% dioan
www.eeworm.com/read/445944/7587919
m hough.m
I = imread(['/home/s0677966/aip5/locIm/' 'F5-7b'],'bmp');
%or threshold its edges
figure(1)
E = edge(I);
imshow(I);
title ('Gradient Image')
%Use matlab's radon function to compute the