public static <T extends ImageBase> ImageSegmentation<T> slic(
      ConfigSlic config, ImageType<T> imageType) {
    SegmentSlic<T> ms = FactorySegmentationAlg.slic(config, imageType);

    return new Slic_to_ImageSegmentation<T>(ms);
  }