RegNet icon indicating copy to clipboard operation
RegNet copied to clipboard

What's the difference between the "index_tr_new_address_list", "index_elx_new_address_list", "point_tr_new_address_list" and "point_elx_new_address_list"

Open mtcluo opened this issue 5 years ago • 1 comments

Do I haven't to use the "index_elx_new_address_list" and "point_elx_new_address_list" if I don't want to use the elastix?

mtcluo avatar Sep 26 '20 14:09 mtcluo

index indicates the indices of image matrix and point indicates the world coordinate of them.

elx represents the elastix style, which has two extra rows: 1) index/world 2) #number of points. tr represents the truncated version by removing these two lines. This type can be directly read by NumPy.

An examle of point_elx:

point 
2
84.390    168.780   32.500   
96.030    136.770   170.000  

An example of index_tr:

87 174 13
99 141 68

hsokooti avatar Oct 04 '20 22:10 hsokooti