use of boofcv.alg.distort.mls.ImageDeformPointMLS_F32 in project BoofCV by lessthanoptimal.
the class FactoryDistort method deformMls.
public static PointDeformKeyPoints deformMls(ConfigDeformPointMLS config) {
if (config == null)
config = new ConfigDeformPointMLS();
ImageDeformPointMLS_F32 alg = new ImageDeformPointMLS_F32(config.type);
alg.setAlpha(config.alpha);
return new PointDeform_MLS(alg, config.rows, config.cols);
}
Aggregations