Line Detection via Standard Hough Transform

バージョン 1.1.0.0 (2.27 KB) 作成者: Amin Sarafraz
Detects lines in binary images via Standard Hough Transform.
ダウンロード: 41.2K
更新 2012/9/4

ライセンスの表示

Function uses Standard Hough Transform to detect Lines in a binary image.
According to the Hough Transform, each pixel in image space corresponds to a line in Hough space and vise versa.This function uses
polar representation of lines i.e. x*cos(teta)+y*sin(teta)=p to detect
lines in binary image. upper left corner of image is the origin of polar coordinate system
Example :
[pdetect,tetadetect,Accumulator] = houghline(Imbinary,pstep,tetastep,thresh)

引用

Amin Sarafraz (2024). Line Detection via Standard Hough Transform (https://www.mathworks.com/matlabcentral/fileexchange/4983-line-detection-via-standard-hough-transform), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R14
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
謝辞

ヒントを与えたファイル: Parabola detection using Hough Transform

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.1.0.0

Error handling/ Better documentation/ Evaluating the comment by Nicolas HUOT

1.0.0.0

Modified version,slightly faster and better performance, with a good comments.