How to concatenate GRAYSCALE and RGB images?

18 visualizzazioni (ultimi 30 giorni)
I'm trying to concatenate a graysacale and rgb image but it shows error.
This is the code
>> A = imread('bird.jpg');
>> B = rgb2gray(A);
>> imshow(A),imshow(B);
>> C = cat(2,A,B);
Error using cat
Dimensions of arrays being concatenated are not consistent.
Can someone help me out?
I want this effect which is shown in given image
Concatenate GRAYSCALE and RGB image in MATLAB.jpg

Risposta accettata

Sai Bhargav Avula
Sai Bhargav Avula il 30 Ott 2019
Modificato: Sai Bhargav Avula il 30 Ott 2019
Hi, If just want to stitch them you can try using the montage() function of matlab.
Hope this helps!
  4 Commenti
DGM
DGM il 26 Ott 2022
If the goal is to produce a composite image for further processing (or saving) and you want something with the abilities of montage(), you can also use IPT imtile() instead.

Accedi per commentare.

Più risposte (1)

DGM
DGM il 26 Ott 2022
Alternatively, you can expand the grayscale image. Assuming the images have compatible geometry, they can then be edge-concatenated as normal.
% an RGB image and a mono image
RGB = imread('peppers.png');
I = rgb2gray(RGB);
% expand the single-channel image
Irgb = repmat(I,[1 1 3]);
% concatenate the images
outpict = [Irgb RGB];
imshow(outpict)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Prodotti


Release

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by