Outputs of otbcli_LargeScaleMeanShift and otbcli_Segmentation are different

Given

otbcli_LargeScaleMeanShift -in QB_1_ortho.tif -spatialr 4 -ranger 80 -minsize 100 -mode.vector.out regionsLSMS_100.shp
otbcli_Segmentation -in QB_1_ortho.tif -filter meanshift -filter.meanshift.spatialr 4 -filter.meanshift.ranger 80 -filter.meanshift.minsize 100 -mode.vector.out regionsSEG100.shp

should not regionsLSMS_100.shp be identical to regionsSEG100.shp ?

Well, I thing my answer to your other question also answers this question…

Well, I thing my answer to your other question also answers this question…

It does not, as far as I understand:

otbcli_Segmentation -filter meanshift
should be identical to
otbcli_LargeScaleMeanShift

In both cases we are chaining the 4 steps and should be processing with:
Mean shift smoothing step: -spatialr 4 -ranger 80
LSMSS step: -spatialr 2 -ranger 40

Am I misunderstanding?