Esempio n. 1
0
 public MeanShift(int width, int height, RelativeInt distance = null)
 {
     Width    = width;
     Height   = height;
     Distance = distance;
 }
Esempio n. 2
0
 public Lat(int width, int height, RelativeInt offset)
 {
     Width  = width;
     Height = height;
     Offset = offset;
 }
Esempio n. 3
0
 public Level(RelativeInt blackPoint, RelativeInt whitePoint, decimal?gamma = null)
 {
     BlackPoint = blackPoint;
     WhitePoint = whitePoint;
     Gamma      = gamma;
 }
Esempio n. 4
0
 public Displace(RelativeInt horizontalScale, RelativeInt verticalScale = null, bool argumentsReferToDestinationImage = false)
 {
     HorizontalScale = horizontalScale;
     VerticalScale   = verticalScale;
     ArgumentsReferToDestinationImage = argumentsReferToDestinationImage;
 }