How to swap the label of the left brain to the right brain

I used the mne.grow_labels() function to generate seven labels on the left brain, with hemis set to 0. When I set hemis to 1, the generated right brain label is completely asymmetric from the previous one. Does anyone know the reason for this?

how did you send the centers of the labels?

can you share the code you used?

Alex

Thank you very much, the code to generate the label part is as follows:

names = ‘1234567’
Label = mne.grow_labels(subject=‘fsaverage’, seeds=[1000,2000,3000,4000,5000,6000,7000], extents=10.0, hemis=1,subjects_dir=None,names=[i for i in names],surface=‘white’, colors=None)

color = [‘b’,‘g’,‘r’,‘c’,‘m’,‘y’,‘k’,‘b’]
for i in range(7):
brain.add_label(Label[i],color=color[i])

the seeds are not comparable across hemispheres

it’s why it does not work.

Alex