필터 지우기
필터 지우기

Robot Vision : Internal and External Corner detection code

조회 수: 1 (최근 30일)
Muhammad Zeeshan Ahmed Khan
Muhammad Zeeshan Ahmed Khan 2020년 4월 9일
답변: Image Analyst 2020년 4월 9일
Dear All,
I am newbee to MATLAB, please experts suggest me THe code for internal and external code detection the basic algoristh is here
procedure count_objects(B);
{
E:=0;
I:=0;
for L:= 0 to MaxRow - 1
for P:= 0 to MaxRow - 1
{
if external_match(L,P) then E:=E+1;
if internal_match(L,P) then I:=I+1;
};
return((E-1)/4);
}

답변 (1개)

Image Analyst
Image Analyst 2020년 4월 9일
If you have the Computer Vision Toolbox, try
detectHarrisFeatures
Detect corners using Harris–Stephens algorithm and return cornerPoints object

카테고리

Help CenterFile Exchange에서 Agriculture에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by