How can I plot a filled convex shape?

6 ビュー (過去 30 日間)
Canberk Suat Gurel
Canberk Suat Gurel 2018 年 2 月 25 日
コメント済み: Image Analyst 2018 年 2 月 25 日
Is it possible to plot a filled convex shape?
This is what I want to plot:
This is what I have plotted using the rectangle command but it does not work with unordinary shapes.

採用された回答

Star Strider
Star Strider 2018 年 2 月 25 日
This works for me with both fill and patch in R2017b:
x = [120 158 165 188 198 145];
y = [ 55 51 89 51 14 14];
figure(1)
fill(x, y, [0.1 0.5 0.9])
axis([100 200 0 150])
axis equal
figure(2)
patch(x, y, [0.1 0.5 0.9])
axis([100 200 0 150])
axis equal
The patch function usually closes the curve on its own. If it doesn’t, close it yourself:
patch([x x(1)], [y y(1)], [0.1 0.5 0.9])

その他の回答 (1 件)

Image Analyst
Image Analyst 2018 年 2 月 25 日
For analytical data (graph points) you can do what Star says.
If you have digital images, look at the functions imfill(), bwconvhull(), and poly2mask(). They're all slightly different depending on what you're starting with and what you want to end up with.
  1 件のコメント
Image Analyst
Image Analyst 2018 年 2 月 25 日
I don't think Canberk cares about your question - it doesn't answer or address his problem at all - so post your question in a new, completely separate post, not here.

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

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by