how to convert image into square matrix
显示 更早的评论
i want find the determinant of the video matrix,,,, but video matrix size is X =76032 x 60.
Is there any function to convert such a video frames matrix into square matrix?
OR
how to reshape video frames into square matrix?
also to perform X*X' operation i want square matrix.
i am applying Gaussian process latent variable model to the texture video.
thanks...
3 个评论
Jan
2013-4-5
You can run X*X' with non-square matrices also.
Harshanand Meshram
2013-4-5
Jon
2013-4-5
I don't think you really want a square matrix for your purposes. In particular as Jan pointed out X*X' is fine for non square matrices. You probably have an error in forming the matrix K so that it doesn't have the correct dimensions. It should be 60 x 60 in your case.
回答(1 个)
Image Analyst
2013-4-5
I doubt your image frame is 76,032 pixels high by 60 columns wide. When you get a frame, what does this show
[rows, columns, numberOfColorFrames] = size(yourImage)
That said, you can use imresize() to squeeze your image into any size you want, such as a square.
2 个评论
Harshanand Meshram
2013-4-5
Image Analyst
2013-4-5
I have no idea. I've never heard of "Non-linear GPLVM"
类别
在 帮助中心 和 File Exchange 中查找有关 Video Formats and Interfaces 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!