Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
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:

Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by