How to multiply the following?

10 views (last 30 days)
Considering an image I of any size. A mask of size 1X10. How to multiply those two?
  3 Comments
Sabarinathan Vadivelu
Sabarinathan Vadivelu on 10 Sep 2012
I'm getting error
??? Error using ==> times
Integers can only be combined with integers of the same class, or scalar doubles.
Jan
Jan on 10 Sep 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.

Sign in to comment.

Accepted Answer

Titus Edelhofer
Titus Edelhofer on 10 Sep 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 Comments
Sabarinathan Vadivelu
Sabarinathan Vadivelu on 10 Sep 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 on 10 Sep 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

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!