本文整理汇总了Java中jp.co.cyberagent.android.gpuimage.GPUImageToonFilter类的典型用法代码示例。如果您正苦于以下问题:Java GPUImageToonFilter类的具体用法?Java GPUImageToonFilter怎么用?Java GPUImageToonFilter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
GPUImageToonFilter类属于jp.co.cyberagent.android.gpuimage包,在下文中一共展示了GPUImageToonFilter类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: ToonFilterTransformation
import jp.co.cyberagent.android.gpuimage.GPUImageToonFilter; //导入依赖的package包/类
public ToonFilterTransformation(Context context, BitmapPool pool, float threshold,
float quantizationLevels) {
super(context, pool, new GPUImageToonFilter());
mThreshold = threshold;
mQuantizationLevels = quantizationLevels;
GPUImageToonFilter filter = getFilter();
filter.setThreshold(mThreshold);
filter.setQuantizationLevels(mQuantizationLevels);
}
示例2: ToonFilterTransformation
import jp.co.cyberagent.android.gpuimage.GPUImageToonFilter; //导入依赖的package包/类
public ToonFilterTransformation(Context context, float threshold, float quantizationLevels) {
super(context, new GPUImageToonFilter());
mThreshold = threshold;
mQuantizationLevels = quantizationLevels;
GPUImageToonFilter filter = getFilter();
filter.setThreshold(mThreshold);
filter.setQuantizationLevels(mQuantizationLevels);
}
示例3: ToonFilterPostprocessor
import jp.co.cyberagent.android.gpuimage.GPUImageToonFilter; //导入依赖的package包/类
public ToonFilterPostprocessor(Context context, float threshold, float quantizationLevels) {
super(context, new GPUImageToonFilter());
this.threshold = threshold;
this.quantizationLevels = quantizationLevels;
GPUImageToonFilter filter = getFilter();
filter.setThreshold(this.threshold);
filter.setQuantizationLevels(this.quantizationLevels);
}
示例4: ToonFilterTransformation
import jp.co.cyberagent.android.gpuimage.GPUImageToonFilter; //导入依赖的package包/类
public ToonFilterTransformation(float threshold, float quantizationLevels) {
super(new GPUImageToonFilter());
this.threshold = threshold;
this.quantizationLevels = quantizationLevels;
GPUImageToonFilter filter = getFilter();
filter.setThreshold(this.threshold);
filter.setQuantizationLevels(this.quantizationLevels);
}