Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
matlab では、画像の一部のピクセルの色を黒に変更しますが、色は青に変わります。私は問題を理解できません.私のコードは以下の通りです. 誰でも私を助けることができますか?
img = imread('test.png'); for i = 1 : 200 for j = 1: 640 img(i,j) = 0; end end
おそらくRGB画像があるので、次のように書く必要があります:
img(i,j,:) = 0
次の出力も確認する必要がありますclass(img)。size(img)
class(img)
size(img)