フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How to find pixels's neighbours?

1 回表示 (過去 30 日間)
Mohamed Amine
Mohamed Amine 2012 年 7 月 12 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I have two vectors of pixels with their position x and y length of vectors is not the same and their length is 520 There is an exemple: A = 20 40 60 120 30 50 100 140 B = 40 20 50 30 the result : pixels (20,30) and (40,50) are the same in two vectors so i have D = 40 20 as a result 50 30
  4 件のコメント
Ryan
Ryan 2012 年 7 月 12 日
To clarify, are you trying to locate points in B that are also in A?
Jan
Jan 2012 年 7 月 12 日
@Mohamed: Do you see the difference in the readability of Sebastian's example code and your one? It would be very helpful, when you edit the original question and insert full stops at the end of each sentence. To learn more about code formatting and asking good questions, follow the "About MATLAB Answers" link on the left side.

回答 (1 件)

Sean de Wolski
Sean de Wolski 2012 年 7 月 12 日
doc intersect
And specifically:
intersect(A,B);
or ismember
C = A(ismember(A,B))
  2 件のコメント
Image Analyst
Image Analyst 2012 年 7 月 12 日
Seems like it, based on his comment. But why are these "neighbors" of some pixels? Does this do what his subject line asks?
Sean de Wolski
Sean de Wolski 2012 年 7 月 12 日
They were selected based on their responses to a survey?

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by