Azzera filtri
Azzera filtri

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

1 visualizzazione (ultimi 30 giorni)
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:

Risposta accettata

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

Più risposte (0)

Categorie

Scopri di più su Introduction to Installation and Licensing in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by