How to make a road lane for a synthetic image in gray scale?

1 回表示 (過去 30 日間)
Erika
Erika 2016 年 12 月 20 日
コメント済み: Erika 2016 年 12 月 21 日
I'm trying to make a synthetic image in gray scale with some lines to simulate a road lane similar to the image attached. I appreciate any help.

採用された回答

Massimo Zanetti
Massimo Zanetti 2016 年 12 月 20 日
Here it is:
%create one element
Z = zeros(100,101);
%lateral lanes
Z(:,[11:15,87:91]) = 1;
%mid lane (dashed)
Z(1:50,49:53) = 1;
%repeat element N times to create the road pattern
N = 4;
Z = repmat(Z,N,1);
%show image
imshow(Z);
  1 件のコメント
Erika
Erika 2016 年 12 月 21 日
You are a life saver! Thanks a lot.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by