Borrar filtros
Borrar filtros

Getting 'Subscripted assignment dimension mismatch' error when my image dimensions match?

1 visualización (últimos 30 días)
I am trying to overlay one image on another and I keep getting a dimension mismatch error. Here is the relevant block of code:
img = imread('image');
pass = imread('passimage');
v6th = size(img,1)/6;
h6th = size(img,2)/6;
img(round(v6th-size(pass,1)/2):round(v6th+size(pass,1)/2),1:size(pass,2),1:3) = pass;
For reference:
size(pass) == 26, 64, 3
size(img) == 1051, 1425, 3
I have checked that round(v6th-size(pass,1)/2):round(v6th+size(pass,1)/2) evaluates to 162:188 totaling 26.
I am trying to eventually end up with something like this:

Respuesta aceptada

Image Analyst
Image Analyst el 21 de Nov. de 2017
162 to 188 is 27 numbers, NOT 26.
>> length(162:188)
ans =
27
Recheck your math.

Más respuestas (0)

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by