It seems that a convex hull is generated, which is what vtkDelaunay3D is expected to do.
You can adjust alpha parameters on the vtkDelaunay3D filter, to make it generate concave objects, but it may make mesh generation fail. Alternatively, if the shape is just slightly concave then you may get away without using alpha shapes and applying vtkButterflySubdivisionFilter on the output.
You can try both these options in 3D Slicer’s Markups To Model module (install 3D Slicer and then in the Slicer extension manager install MarkupsToModel extension). Also, full source code is here. Short demo:
You may also try other surface reconstruction filters. Note that all these filters only use the points and ignore all the polygons.
You can make use of the polygons if the contours are defined on parallel planes. If you don’t need to keep the original point coordinates and geometry is simple (no branching, variable spacing, missing slices, etc.) then you might be able to use vtkVoxelContoursToSurfaceFilter. To preserve original point coordinates and handle branching, allow keyhole technique for holes within contours, smooth end-capping, etc. you may use 3D Slicer’s planar contour to closed surface converter (it is used automatically when you import set of planar contour from DICOM RTSTRUCT objects).