本文整理汇总了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);
}
开发者ID:open-android,项目名称:Glide-transformations,代码行数:10,代码来源:ToonFilterTransformation.java
示例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);
}
开发者ID:open-android,项目名称:Picasso-transformations,代码行数:9,代码来源:ToonFilterTransformation.java
示例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);
}
开发者ID:CarGuo,项目名称:FrescoUtils,代码行数:11,代码来源:ToonFilterPostprocessor.java
示例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);
}
开发者ID:wasabeef,项目名称:glide-transformations,代码行数:9,代码来源:ToonFilterTransformation.java
注:本文中的jp.co.cyberagent.android.gpuimage.GPUImageToonFilter类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论