diff --git a/remap_labelimage.py b/remap_labelimage.py
new file mode 100644
index 0000000000000000000000000000000000000000..3214664d4d0dd9cde3f28d1d7daf09399ed8fb6b
--- /dev/null
+++ b/remap_labelimage.py
@@ -0,0 +1,29 @@
+#@ File inputfile
+
+from ij import IJ
+from inra.ijpb.label import LabelImages
+from ij.measure import ResultsTable
+import os.path
+
+path, ext = os.path.splitext(str(inputfile))
+parent_dir, filename = os.path.split(path)
+
+label_imp = IJ.openImage(str(inputfile))
+IJ.log("remapping labels...")
+original_labels = LabelImages.findAllLabels(label_imp)
+LabelImages.remapLabels(label_imp)
+remapped_labels = LabelImages.findAllLabels(label_imp)
+atlas_map = ResultsTable()
+
+for index, value in enumerate(sorted(original_labels)):
+    atlas_map.setValue("original labels", index, value)
+
+for index, value in enumerate(sorted(remapped_labels)):
+    atlas_map.setValue("remapped labels", index, value)
+
+IJ.log("saving results...")
+IJ.run("Input/Output...", "file=.csv save_column save_row")
+atlas_map.save(parent_dir + "/" + filename + "_labelmap.csv")
+IJ.saveAs(label_imp, "Tiff", parent_dir + "/" + filename + "_remapped.tif")
+label_imp.close()
+IJ.log("done")