regionprops (b,'Orientation')
4 次查看(过去 30 天)
显示 更早的评论
Hello.
I am using this
angle=regionprops(b,'Orientation');
theta=angle.Orientation;
for angle finding.
Now in my thesis I have to write their formulas and mathematical forms.
Now from where we get it?
2 个评论
Image Analyst
2020-1-5
Formulas for what??? The line going through the blob centroids at that angle? Please specify. By the way, this is clearer and more general (in case there are multiple blobs):
props = regionprops(b,'Orientation'); % Make angle measurements.
allTheta = [props.Orientation]; % All angles in a single vector.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Power and Energy Systems 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!