how do i get the matrix index to agree
3 views (last 30 days)
Show older comments
i have two images which have been image processed how to get the two images to have the same matrix index, i have used matlab to calculate the values of x, y and x1, y1:
>> size(x)
ans =
142505 1
>> size(y)
ans =
142505 1
>> size(x1)
ans =
176868 1
>> size(y1)
ans =
176868 1
this is what i am getting but i need to perform a calculation to try and make these images the same.
0 Comments
Accepted Answer
Image Analyst
on 16 Apr 2013
Do you have a 2D grayscale image, or a 3D RGB color image? x, y, x1, and y1 look like 1D arrays. What do they represent? Four one-dimensional grayscale images?
6 Comments
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!