MATLAB: How to change the color of an individual pixel in a downloaded image

colorimageimage processingpixel

I'm trying to edit the colors of individual pixels in PNG image file (if there's another format that's easier to edit than PNG, I can try that). I have the student version of MATLAB with no toolbox add-ons. Thanks!

Best Answer

Just assign them. Like
rgbImage(row, column, :) = [r, g, b];
Why are you having problems? Explain your difficulty better so we know how to help you.