Clear Filters
Clear Filters

How do I change the background on an image?

1 view (last 30 days)
Jose
Jose on 8 Apr 2013
Given an image filename and a background image file name, how would I write a function that changes the images blue background with the background in the background file. Then write the updated image to a file with 'updated_' appended before the background filename.
So far I have
function new = changeBackground(fn1, background)
pic = imread('fn1. jpg') [r c l] = size(cat); background = imread('background.jpg') [r1 c1 l1] = size(background); red = (:, :, 1); green = (:, :, 2); blue = (:, :,3);
cutout= fn1(fn1~=blue);
new = imwrite(cutout, background); new = imwrite(new, 'updated_background); end
I think I separated and concatenated the images into RGB layers incorrectly, as well as indexed the blue mask incorrectly.

Answers (0)

Community Treasure Hunt

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

Start Hunting!