Can you help me to correct this error?

조회 수: 2 (최근 30일)
Carole
Carole 2012년 10월 30일
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

답변 (1개)

Image Analyst
Image Analyst 2012년 10월 30일
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
Carole
Carole 2012년 10월 30일
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
Image Analyst
Image Analyst 2012년 10월 30일
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)));

댓글을 달려면 로그인하십시오.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by