How to make 2D boundary follow the data ?
2 次查看(过去 30 天)
显示 更早的评论
I have this data set (attached). I tried to find the boundary for it but the boundary doesn't follow outer data points exactly (as shown) especially at the corners. Though I tried to change shrink factor(s). Hope you can help me figure that out.
Thank you
x=Data(:,1);
y=Data(:,2);
s=1; %shrink factor
k = boundary(x,y,1);
Xbound=x(k);
Ybound=y(k);
plot(Xbound,Ybound);
0 个评论
采纳的回答
Image Analyst
2017-9-8
Try different shrink factors, the third argument. Try something between 0.1 and 0.9 until you find one that "hugs" your point set the best.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!