Detecting an object in binary image and cropping it

2 ビュー (過去 30 日間)
Farshad Bolouri
Farshad Bolouri 2020 年 9 月 24 日
コメント済み: Walter Roberson 2020 年 9 月 25 日
Hello, I am currently working on a project and I am stuck on one part. I am trying to detect the a playing a card in an image and then rotate it and then crop it out. The figure below depcits what I'm trying to achieve:
I've already achieved this goal using functions like edge() and regionprops(). But I am trying to do it without using those. This is what I have so far:
Now im trying to align the image and then crop it without using regionprops(). Do you have any suggestion on what approach I should take?
I want to do it as simple as possible without using any big matlab functions(No machine learning techniques either)
Thank You
  1 件のコメント
Walter Roberson
Walter Roberson 2020 年 9 月 25 日
There are similar questions, but we only routinely delete duplicate questions from the same person (or cases where the question is obviously identical, leading us to believe the same person posted under different names.)

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2020 年 9 月 24 日
maskvert = any(YourBinaryImage, 1);
firstcol = find(maskvert, 1, 'first');
lastcol = find(maskvert, 1, 'last');
with obvious extension for horizontal.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with Image Processing Toolbox についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by