Can you help me to correct this error?

Hi,I had this error
??? Error using ==> times
Number of array dimensions must match for binary array op.
Error in ==> code at 55
mult=image.*bw;
I used this line to correct it
size(image)=size(bw)
but i have now this error
??? Subscript indices must either be real positive integers or logicals.
Error in ==> code at 54
size(image)=size(bw)
can you help me to correct it, thanks

Respuestas (1)

Image Analyst
Image Analyst el 30 de Oct. de 2012
That line won't correct it. First of all, image() is a built - in function name and you can't use it like "image.*bw" because functions need to be passed arguments.
Next, even if it were a variable name (meaning you blew away the built-in function called image()), then you should try to figure out why you're multiplying two images together that aren't the same size. What would that mean to you? How could you do that?
Next, if you did want to resize one of them, say bw, you'd do
[rows, columns, numberOfColorChannels] = size(yourImage);
resizedBW = imresize(bw, [rows columns]);
mult = yourImage .* resizedBW;

2 comentarios

Carole
Carole el 30 de Oct. de 2012
result = image_luv .* bw;
ok I changed the name of the image but I can't use imresize because image_luv et bw have the same number of rows and columns. image_luv is an Luv image and bw is a binary image of the component L
size(image_luv) =
525 250 3
size(bw) =
525 250
Your image is color - that's why. You can do it this way:
% Mask the image.
maskedluvImage = bsxfun(@times, image_luv, cast(bw, class(image_luv)));

Iniciar sesión para comentar.

Etiquetas

Preguntada:

el 30 de Oct. de 2012

Community Treasure Hunt

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

Start Hunting!

Translated by