フィルターのクリア

segment an image into portions..

2 ビュー (過去 30 日間)
Elysi Cochin
Elysi Cochin 2015 年 4 月 22 日
編集済み: Elysi Cochin 2015 年 5 月 7 日
i have a image, please can someone help me, to segment it into regions
i applied otsu threshold binarization to the image, and got a binary image,
from the binary image is it possible to get the top, bottom, left, right and center regions as a box region...
bw = im2bw(Gray, graythresh(Gray));
  2 件のコメント
Michael Haderlein
Michael Haderlein 2015 年 4 月 22 日
Do you want to do this based on the color (or grayscale) information or just based on the location?
Elysi Cochin
Elysi Cochin 2015 年 4 月 22 日
color or gray does not matter, sir... is it possible to get such portions....

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

採用された回答

Image Analyst
Image Analyst 2015 年 4 月 22 日
Find the centers of each zone automatically. The centroid will be at the center - use regionprops(). The others you can get by using imerode on the binary image to shrink the mask, then take the north, south, east and west pixels. Use find() for that. Now you have the centers of each zone. Then use voronoi() to get the zones themselves.
  6 件のコメント
Elysi Cochin
Elysi Cochin 2015 年 4 月 24 日
sir i didnt get... how to use voronoi..
Image Analyst
Image Analyst 2015 年 4 月 24 日
I will have not much time this weekend. I'm leaving this afternoon to go camping for the weekend, so hopefully you can get it done without me. I haven't used voronoi much lately so I'd have to figure it out just like you, from the help. But I know that it divides an image up into zones based on equidistant lines between points. I think there are examples so hopefully you can figure it out without me.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeVoronoi Diagram についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by