application of spatial filter mask
6 ビュー (過去 30 日間)
古いコメントを表示
hello i have a image and i like to detect the horizontal lines of well-defined thickness and retrieve their numbers and length. how come with spatial filter mask.
a=[1 1 1 1 1 1 1;0 0 0 0 0 0 0;-1 -1 -1 -1 -1 -1 -1]
b=[-1 -1 -1 -1 -1 -1 -1;0 0 0 0 0 0 0;1 1 1 1 1 1 1]
these masks are based on the directional prewitt filter
please help me
2 件のコメント
Image Analyst
2013 年 1 月 14 日
I don't even understand what you said. Perhaps rephrase it, or get a better English speaker to help you.
回答 (1 件)
Image Analyst
2013 年 1 月 14 日
Use conv2() or imfilter():
edgeImage = conv2(yourImage, a, 'same');
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!