MATLAB: Blending two images using height values or strips

blendingImage Processing Toolboxmultimodality

I have two images that are the same size: image 1 image 2
how is it possible to blend them by looking at multiple rows like this (except more than 1):

Best Answer

Just assign it
output = faceImage; % Initialize to face image.
output(row1:row2, :) = skullImage(row1:row2, :); % Overwrite with skull image in specified rows.
Related Question