필터 지우기
필터 지우기

How to detect the Hexagon in imageprocessing?

조회 수: 8 (최근 30일)
saravanakumar D
saravanakumar D 2013년 12월 27일
댓글: Image Analyst 2013년 12월 31일
I don't know how to find the hexagon shape in image. please anyone help

채택된 답변

Image Analyst
Image Analyst 2013년 12월 27일
Get the boundary of the object with bwboundaries(). Then find out if there are 6 kinks in the boundaries with the FAQ. Then see if the lengths of the sides are similar enough to be considered a hexagon rather than just some arbitrary 6-sided polygon. Also make sure it's convex by checking that the solidity is really close to 1.
  댓글 수: 2
saravanakumar D
saravanakumar D 2013년 12월 31일
How to find out the number of kinks? I searched in FAQ, but i didn't find anything regarding. So please tell me about how to find the number of kinks and how to measure the length of side
Image Analyst
Image Analyst 2013년 12월 31일
From the code the FAQ directs you to, it would be length(xStar). The distance is just the simple Pythagorean theorem, so use diff() and sqrt().

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by