How to multiply the following?

4 visualizzazioni (ultimi 30 giorni)
Considering an image I of any size. A mask of size 1X10. How to multiply those two?
  3 Commenti
Sabarinathan Vadivelu
Sabarinathan Vadivelu il 10 Set 2012
I'm getting error
??? Error using ==> times
Integers can only be combined with integers of the same class, or scalar doubles.
Jan
Jan il 10 Set 2012
You cannot multiply a [MxNx3] array directly by a [1x10] vector. It is not clear what kind of output you expect for such a calculation.

Accedi per commentare.

Risposta accettata

Titus Edelhofer
Titus Edelhofer il 10 Set 2012
Hi,
the error indicates what's wrong: your image and your mask have different types (probably your image is e.g. uint8 and your mask is double). If you need your mask to have non integer values (e.g. 2.345), convert your image to double:
dblImage = double(yourImage);
Otherwise you might try to convert your mask to the same integer type as your image (by using uint8, ...).
Titus
  4 Commenti
Sabarinathan Vadivelu
Sabarinathan Vadivelu il 10 Set 2012
This is my code. deg0 is 1X10 mask. threshImage is the input Image.
for i=1:10
deg0(i) = 0.25;
end
deg0=cast(deg0,'uint8');
[rows columns] = size(threshImage);
for j = 1 : columns
for i= 1 : 10 : rows
filtImage0(i,j) = threshImage(i,j).*deg0;
end
end
Titus Edelhofer
Titus Edelhofer il 10 Set 2012
Hi,
if you do it by loop, you need to index deg0 as well:
filtImage0(i,j) = threshImage(i,j).*deg0(i);
or
filtImage0(i,j) = threshImage(i,j).*deg0(j);
Titus

Accedi per commentare.

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by