How to reconstruct a original 2D image from the 1D matrix?
1 view (last 30 days)
Show older comments
upto now I convert 2D image into 1D image matrix.I want to reconstruct into 2D image.I have a struggle on this.can you please help me?
1 Comment
Bérenger Mpamy
on 7 Nov 2022
A is your 1D image matrix
B= reshape(A,[size,size]); %size could be 256*256 or 512*512
Accepted Answer
KSSV
on 7 Feb 2018
You need to reshape your 1D vector into mXn matrix. Have a look on reshape function.
3 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!