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!