diff --git a/src/gnomon_package_tissueimagemesh/algorithm/cellImageQuantification/surfaceMeshCellCurvature.py b/src/gnomon_package_tissueimagemesh/algorithm/cellImageQuantification/surfaceMeshCellCurvature.py
index b291c79760cb291a430b2b4109a01e85a840c0a1..c76a31128b623cd6e7975c89186c1d5169c63a47 100644
--- a/src/gnomon_package_tissueimagemesh/algorithm/cellImageQuantification/surfaceMeshCellCurvature.py
+++ b/src/gnomon_package_tissueimagemesh/algorithm/cellImageQuantification/surfaceMeshCellCurvature.py
@@ -7,7 +7,7 @@ import pandas as pd
 from dtkcore import d_real, d_inliststring
 
 from gnomon.utils import algorithmPlugin
-from gnomon.utils.decorators import cellImageInput, cellImageOutput, dataFrameOutput
+from gnomon.utils.decorators import cellImageInput, meshInput, cellImageOutput, dataFrameOutput
 from gnomon.core import gnomonAbstractCellImageQuantification
 
 from timagetk import TissueImage3D
@@ -18,6 +18,7 @@ from timagetk_geometry.features.tissue_mesh import compute_cell_curvature_featur
 
 
 @algorithmPlugin(version="0.3.0", coreversion="0.81.0", name="Surface Mesh Curvature")
+@meshInput('surface_topomesh', data_plugin="gnomonMeshDataPropertyTopomesh")
 @cellImageInput("tissue", data_plugin="gnomonCellImageDataTissueImage")
 @cellImageOutput("out_tissue", data_plugin="gnomonCellImageDataTissueImage")
 @dataFrameOutput('df', data_plugin="gnomonDataFrameDataPandas")
@@ -34,6 +35,7 @@ class surfaceMeshCellCurvature(gnomonAbstractCellImageQuantification):
         super().__init__()
 
         self.tissue = {}
+        self.surface_topomesh = {}
 
         self.out_tissue = {}
         self.df = {}
@@ -65,13 +67,16 @@ class surfaceMeshCellCurvature(gnomonAbstractCellImageQuantification):
             out_tissue.cells = deepcopy(tissue.cells)
             out_tissue.cells.image = out_tissue
 
-            surface_topomesh = tissue_image_surface_topomesh(
-                out_tissue,
-                resampling_voxelsize=self['resampling_voxelsize'],
-                surface_matching='cell',
-                orientation=(1 if self['orientation'] == "up" else -1),
-                down_facing_threshold=self['down_facing_threshold']
-            )
+            if time in self.surface_topomesh:
+                surface_topomesh = self.surface_topomesh[time]
+            else:
+                surface_topomesh = tissue_image_surface_topomesh(
+                    out_tissue,
+                    resampling_voxelsize=self['resampling_voxelsize'],
+                    surface_matching='cell',
+                    orientation=(1 if self['orientation'] == "up" else -1),
+                    down_facing_threshold=self['down_facing_threshold']
+                )
             compute_cell_curvature_features(out_tissue, surface_topomesh=surface_topomesh)
 
             self.out_tissue[time] = out_tissue