dimension mismatch

4 views (last 30 days)
FIR
FIR on 14 Oct 2011
Commented: Image Analyst on 29 Jun 2016
I have a set of code ,for some RGB images my codes works but for some the coed not work i get an error "Subscripted assignment dimension mismatch",can u tell how to solve it
size of image1=183 275 3
size of image2=238 174 3
size of image3= 72 72 3
I get error for 2nd and 3rd image but not for 1st image
i grt error in this line
trunCoarseImg(:,:,:) = coarseImg((n+1):(end-n),(n+1):(end-n)); where n=6

Accepted Answer

Image Analyst
Image Analyst on 14 Oct 2011
You're specifying 3 dimensions for trunCoarseImg but only two for coarseImg. You can't do that. You'd have to assign that 2D coarseImg image to each color plane in trunCoarseImg one at a time.
  5 Comments
Michael Liu
Michael Liu on 29 Jun 2016
Hi Image Analyst,
How would you assign the 2D image to each color plane one at a time?
Image Analyst
Image Analyst on 29 Jun 2016
To assign the red channel (third index = 1), to some 2D array that has the same lateral dimensions (rows and columns), do this
rgbImage(:,:,1) = your2DImage;

Sign in to comment.

More Answers (0)

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!