代码搜索:如何学习 hough?
找到约 10,000 项符合「如何学习 hough?」的源代码
代码结果 10,000
www.eeworm.com/read/104092/15710325
ppt 学习规则集合.ppt
www.eeworm.com/read/104092/15710332
ppt 概念学习.ppt
www.eeworm.com/read/359212/10161053
m ihough_xy.m
%IYHOUGH_XY XY Hough transform
%
% H = IHOUGH_XY(XYZ, drange, Nth)
%
% Compute the Hough transform of the XY data given as the first two
% columns of XYZ. The last column, if given, is the point str
www.eeworm.com/read/245740/12782790
m houghlines.m
function lines = houghlines(f,theta,rho,rr,cc,fillgap,minlength)
%HOUGHLINES Extract line segments based on the Hough transform.
% LINES = HOUGHLINES(F,THETA,RHO,RR,CC,FILLGAP,MINLENGTH) extract
www.eeworm.com/read/409475/11321736
m houghlines.m
function lines = houghlines(varargin)
%HOUGHLINES Extract line segments based on Hough transform.
% LINES = HOUGHLINES(BW, THETA, RHO, PEAKS) extracts line segments
% in the image BW associated
www.eeworm.com/read/200388/15434304
m ihough_xy.m
%IYHOUGH_XY XY Hough transform
%
% H = IHOUGH_XY(XYZ, drange, Nth)
%
% Compute the Hough transform of the XY data given as the first two
% columns of XYZ. The last column, if given, is the point str
www.eeworm.com/read/273160/10924473
txt 如何安装.txt
安装方法:
1、复制borlndMM.dll文件到Delphi安装目录的bin中,覆盖原文件;
2、复制下面三个文件:
FastMM4Messages.pas
FastMM4.pas
FastMM4Options.inc
到你的项目目录中;
3、在工程dpr文件uses后面第一个引用文件FastMM4.pas(可参考SDK-2示例程序),并重新编译
www.eeworm.com/read/332034/12784479
txt 如何延时.txt
如何在程序中延时
方法一:
使用sleep函数,如延时2秒,用sleep(2000);
方法二:
使用sleep函数的不利只处在于期间不能处理其他的消息,如果时间太长,就好象死机一样,利用ColeDateTime类和ColeDateTimeSpan类实现延时:
ColeDateTime start_time = ColeDateTime::GetCurrentTime();
C
www.eeworm.com/read/158331/11625434
txt 如何汇编.txt
使用tasm进行汇编,使用tlink进行连接
tasm32 asmclock /ml
tlink32 /aa asmclock,,,import32
注:
/ml 表示区分大小写
/aa 表示使用Win32 API