Find the surface area of an object using stereo vision.

1 回表示 (過去 30 日間)
Naseeb Gill
Naseeb Gill 2020 年 1 月 6 日
編集済み: Adam Danz 2020 年 1 月 7 日
Hello,
I want to find out the surface area of tree (only green part) using stereo vision. I know stereo vision and using the same I got the (X,Y,Z) values of tree, (of course one side only) (file is attached). I used delaunay function to calculate area but the problem is that I have some negative values of X and Y which cause error in surface area. How I can get the correct value of surface area using stereo vision?
It will be good if I can calculate volume also.
Thank You.
  4 件のコメント
Naseeb Gill
Naseeb Gill 2020 年 1 月 7 日
Same I was thinking. But unable to do so. What I want to do is remove negative value and add that much value in positive value so that area reain same.
Say for example I have A = [-2,-7,0.5,14,3] by doing offset It should be convert into B =[0,0,2.5,21,3,].
I want to know how to do so? Also a case may be arises when negative values may be more than positive values like C = [-1,-9,-5,14,3]. How to solve this?
Adam Danz
Adam Danz 2020 年 1 月 7 日
編集済み: Adam Danz 2020 年 1 月 7 日
"Say for example I have A = [-2,-7,0.5,14,3] by doing offset It should be convert into B ="[0,0,2.5,21,3,]. "
Why would A be converted to that? A would be offset by it's minimum value which is -7.
A = [-2,-7,0.5,14,3]
A = A - min(A)
A =
5 0 7.5 21 10
For C
C = [-1,-9,-5,14,3]
C - min(C)
ans =
8 0 4 23 12
Note that even if A or C do not have negative values, applying the same proceedure (A - min(A)) does not affect the area.

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

回答 (1 件)

KSSV
KSSV 2020 年 1 月 7 日
After using delaunayTriangulation, you have vertices and nodal connectivity in hand. Then you can use this function to get the area of each triangular element........sum the total areas, you will get the total sutgace area.
Have a look on function triarea from the package.
  4 件のコメント
KSSV
KSSV 2020 年 1 月 7 日
The order of the vertices is important..maybe your messing with that. Did you try with triarea?
Naseeb Gill
Naseeb Gill 2020 年 1 月 7 日
Yes I tried with triarea, it shows error.
Error using triarea (line 29)
Incorrect input dimensions.
Mine pp array is 18x3 and tt array is 24x4.
Also, code I wrote in above comment is same as code written in triarea. Some of its part is:
%--------------------------------------- compute signed area
ev12 = pp(tt(:,2),:)-pp(tt(:,1),:) ;
ev13 = pp(tt(:,3),:)-pp(tt(:,1),:) ;
switch (size(pp,2))
case +2
area = ev12(:,1).*ev13(:,2) ...
- ev12(:,2).*ev13(:,1) ;
area = 0.5 * area;
case +3
avec = cross(ev12,ev13);
area = sqrt(sum(avec.^2,2)) ;
area = 0.5 * area;
otherwise
error('Unsupported dimension.') ;
end
After observing both codes, there is no difference. I'm not changing order of vertices, I'm using them as it as.

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

カテゴリ

Help Center および File ExchangeComputer Vision with Simulink についてさらに検索

製品


リリース

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by