2017-04-14 150 views
0

如果我從黑白圖像獲取像素位置爲[row, column] = find(bw2 == 1);那麼我想將此位置移動到RGB圖像,然後如何移除此位置或將掩碼替換爲RGB圖像中的此位置。這個怎麼做?Matlab'圖像處理'

+0

你想要什麼來取代它? – Suever

+0

我想在把這個像素位置放在rgb圖像上來填充這個區域與鄰居 –

回答

1

您是否嘗試過這樣的事情

[row, column] = find(bw2 == 1); 

rgb_image(row,column) = 1; %assign value for the indices you found in your bw image; use 1 or whatever you want 

bw2(row,column) = NaN; %or any other value, so next mask you won't select these indices 
+0

謝謝親愛的qbzenker –

+0

我希望它有幫助!如果它解決了你的問題,你可以在我的答案plz旁邊打上覆選標記! – qbzenker