Shifting values in a matrix, Alignment of two matrices
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I want to align the values of two matrices so that the corresponding values in one column will align the other columns. For example
A=
1 2.5
2 5.4
3 4.3
4 3.3
5 5.4
6 2.5
B=
6 3.3
7 5.4
5 2.5
3 2.5
5 5.4
9 4.3
I want to manipulate matrix B so that it's second column aligns with A so I can get a third matrix
C =
1 2.5 3 2.5
2 5.4 5 5.4
3 4.3 9 4.3
4 3.3 6 3.3
5 5.4 7 5.4
6 2.5 5 2.5
Then separate the 1st and 3rd columns
D=
1 3
2 5
3 9
4 6
5 7
6 5
0 comentarios
Respuestas (3)
Andrei Bobrov
el 22 de Dic. de 2015
[~,ib] = sortrows(B,[2 1]);
[~,ia] = sortrows(A,[2 1]);
[~,ia2] = sort(ia);
D = [A(:,1),B(ib(ia2),1)];
0 comentarios
Image Analyst
el 22 de Dic. de 2015
Shifting (translating) and sorting are two different things. Which do you want?
For shifting you'd use "register" the array with imregister() or do normalized cross correlation with normxcorr2() (I have a demo if you want it).
For sorting you'd simply use sort() - it's so simple that we hardly need to show you.
2 comentarios
Image Analyst
el 22 de Dic. de 2015
Normxcorr2() is used to find a template in another image. The demo is attached.
If you want to shift the image a little bit, it sounds like imregister() is exactly what you want. There are demos for it in the help. I think there are some other functions that are better for very large shifts. Search this forum for imregister or registration or Alex Taylor (the Mathworks developer who wrote them).
Ver también
Categorías
Más información sobre Geometric Transformation and Image Registration en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!