Browse Source

Use qualifier [skip ci]

Former-commit-id: a36614c5564961e7b151dbe223182f6ee7649397
Former-commit-id: e0093c75fe7b957d29aaeeccaa82fbb43f9dfacf
Former-commit-id: 5c4a6bbb637c99ef5d46ecdb1506a6d334f01853
pull/1/head
James Jackson-South 10 years ago
parent
commit
f11722e460
  1. 26
      src/ImageProcessorCore/Samplers/RotateFlip.cs

26
src/ImageProcessorCore/Samplers/RotateFlip.cs

@ -2,7 +2,6 @@
// Copyright (c) James Jackson-South and contributors. // Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0. // Licensed under the Apache License, Version 2.0.
// </copyright> // </copyright>
namespace ImageProcessorCore.Samplers namespace ImageProcessorCore.Samplers
{ {
using System; using System;
@ -43,13 +42,13 @@ namespace ImageProcessorCore.Samplers
switch (this.RotateType) switch (this.RotateType)
{ {
case RotateType.Rotate90: case RotateType.Rotate90:
Rotate90(target, source); this.Rotate90(target, source);
break; break;
case RotateType.Rotate180: case RotateType.Rotate180:
Rotate180(target, source); this.Rotate180(target, source);
break; break;
case RotateType.Rotate270: case RotateType.Rotate270:
Rotate270(target, source); this.Rotate270(target, source);
break; break;
default: default:
target.ClonePixels(target.Width, target.Height, source.Pixels); target.ClonePixels(target.Width, target.Height, source.Pixels);
@ -60,10 +59,10 @@ namespace ImageProcessorCore.Samplers
{ {
// No default needed as we have already set the pixels. // No default needed as we have already set the pixels.
case FlipType.Vertical: case FlipType.Vertical:
FlipX(target); this.FlipX(target);
break; break;
case FlipType.Horizontal: case FlipType.Horizontal:
FlipY(target); this.FlipY(target);
break; break;
} }
} }
@ -79,7 +78,7 @@ namespace ImageProcessorCore.Samplers
int height = source.Height; int height = source.Height;
Image temp = new Image(height, width); Image temp = new Image(height, width);
Parallel.For(0, height, Parallel.For(0, height,
y => y =>
{ {
for (int x = 0; x < width; x++) for (int x = 0; x < width; x++)
@ -90,6 +89,7 @@ namespace ImageProcessorCore.Samplers
newY = width - newY - 1; newY = width - newY - 1;
temp[newX, newY] = source[x, y]; temp[newX, newY] = source[x, y];
} }
this.OnRowProcessed(); this.OnRowProcessed();
}); });
@ -106,7 +106,7 @@ namespace ImageProcessorCore.Samplers
int width = source.Width; int width = source.Width;
int height = source.Height; int height = source.Height;
Parallel.For(0, height, Parallel.For(0, height,
y => y =>
{ {
for (int x = 0; x < width; x++) for (int x = 0; x < width; x++)
@ -115,6 +115,7 @@ namespace ImageProcessorCore.Samplers
int newY = height - y - 1; int newY = height - y - 1;
target[newX, newY] = source[x, y]; target[newX, newY] = source[x, y];
} }
this.OnRowProcessed(); this.OnRowProcessed();
}); });
} }
@ -130,7 +131,7 @@ namespace ImageProcessorCore.Samplers
int height = source.Height; int height = source.Height;
Image temp = new Image(height, width); Image temp = new Image(height, width);
Parallel.For(0, height, Parallel.For(0, height,
y => y =>
{ {
for (int x = 0; x < width; x++) for (int x = 0; x < width; x++)
@ -138,6 +139,7 @@ namespace ImageProcessorCore.Samplers
int newX = height - y - 1; int newX = height - y - 1;
temp[newX, x] = source[x, y]; temp[newX, x] = source[x, y];
} }
this.OnRowProcessed(); this.OnRowProcessed();
}); });
@ -157,7 +159,7 @@ namespace ImageProcessorCore.Samplers
ImageBase temp = new Image(width, height); ImageBase temp = new Image(width, height);
temp.ClonePixels(width, height, target.Pixels); temp.ClonePixels(width, height, target.Pixels);
Parallel.For(0, halfHeight, Parallel.For(0, halfHeight,
y => y =>
{ {
for (int x = 0; x < width; x++) for (int x = 0; x < width; x++)
@ -166,6 +168,7 @@ namespace ImageProcessorCore.Samplers
target[x, y] = temp[x, newY]; target[x, y] = temp[x, newY];
target[x, newY] = temp[x, y]; target[x, newY] = temp[x, y];
} }
this.OnRowProcessed(); this.OnRowProcessed();
}); });
} }
@ -183,7 +186,7 @@ namespace ImageProcessorCore.Samplers
ImageBase temp = new Image(width, height); ImageBase temp = new Image(width, height);
temp.ClonePixels(width, height, target.Pixels); temp.ClonePixels(width, height, target.Pixels);
Parallel.For(0, height, Parallel.For(0, height,
y => y =>
{ {
for (int x = 0; x < halfWidth; x++) for (int x = 0; x < halfWidth; x++)
@ -192,6 +195,7 @@ namespace ImageProcessorCore.Samplers
target[x, y] = temp[newX, y]; target[x, y] = temp[newX, y];
target[newX, y] = temp[x, y]; target[newX, y] = temp[x, y];
} }
this.OnRowProcessed(); this.OnRowProcessed();
}); });
} }

Loading…
Cancel
Save