如果我從黑白圖像獲取像素位置爲[row, column] = find(bw2 == 1)
;那麼我想將此位置移動到RGB圖像,然後如何移除此位置或將掩碼替換爲RGB圖像中的此位置。這個怎麼做?Matlab'圖像處理'
0
A
回答
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
相關問題
- 1. MATLAB(圖像處理)
- 2. Matlab圖像處理
- 3. Matlab幫助圖像處理
- 4. Matlab圖像閾值處理
- 5. matlab中的圖像處理
- 6. matlab圖像處理3d
- 7. Matlab更新圖像處理
- 8. Matlab的圖像塊處理
- 9. 圖像處理與Matlab的
- 10. MATLAB圖像處理幫助!
- 11. matlab圖像處理錯誤
- 12. Java中的圖像處理,如MATLAB圖像處理工具箱
- 13. MATLAB vs Visual C++圖像處理
- 14. 在Matlab中處理多個圖像
- 15. MATLAB vs Simulink在數字圖像處理?
- 16. matlab中的圖像處理工具箱
- 17. Python vs Matlab在圖像處理
- 18. Matlab-處理兩個subploted圖像
- 19. Matlab多圖像加載/處理
- 20. 使用MATLAB分割圖像處理
- 21. 圖像處理在MATLAB中的錯誤
- 22. matlab圖像處理退化函數
- 23. 獲取Matlab圖像處理的座標
- 24. GPU上的圖像處理算法,並行處理Matlab
- 25. MATLAB圖像處理 - 查找圖像的邊緣和區域
- 26. 從Matlab中的時鐘圖像獲取時間 - 圖像處理
- 27. 圖像處理 - 在Matlab TIFF圖像在灰度
- 28. MATLAB圖像處理:從彩色圖像獲取HSV組件
- 29. 如何獲得圖像的邊緣MATLAB圖像處理
- 30. Matlab圖像處理:通過矩形綁定圖像
你想要什麼來取代它? – Suever
我想在把這個像素位置放在rgb圖像上來填充這個區域與鄰居 –