How to find 0 is present in any bounding box?

1 回表示 (過去 30 日間)
Jyosh Matlab
Jyosh Matlab 2021 年 12 月 4 日
コメント済み: Jyosh Matlab 2021 年 12 月 6 日
I am having a problem...bbox in matlab are like [w,x,y,z] so is there any code which help me to check if any of one out these 4 variables are 0.
And also if I am having more than one bbox in single image...so is that valid or invalid?
Thanks in advance.

採用された回答

Walter Roberson
Walter Roberson 2021 年 12 月 4 日
It is common to have more than one bounding box in an image. For example if you are tracking faces, then you would expect more than one bounding box if there were more than one face.
If you have a vector bbox that consists of [w,x,y,z] then to test if any of them are zero or negative,
any(bbox <= 0)
  10 件のコメント
Walter Roberson
Walter Roberson 2021 年 12 月 5 日
What results did you get?
The above is not intended as steps to fix the problem, the above is intended for you to tell us what the actual datatype is that is stored, so that we can give more correct code than we had above.
Jyosh Matlab
Jyosh Matlab 2021 年 12 月 6 日
I'll let you know soon...right now I have not tested it yet.

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

その他の回答 (0 件)

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by