App
DifferenceOfGaussianSharpenFilterLayerSpecificPresentation.java
Go to the documentation of this file.
1 package mhr.appcore.image.layers.filter;
2 
3 import mhr.appcore.image.layers.LayerSpecificPresentation;
4 import mhr.appcore.tools.actiondata.CancelableToolActionData.Action;
5 
10 
11 
12  public double sigma;
13  public double k;
14  public double force;
15  public boolean area;
16 
24  this.sigma = sigma;
25  this.k = k;
26  this.force = force;
27  this.area = area;
28  }
29 
30 }