Rotate to 360.
This commit is contained in:
parent
a419225ea3
commit
817b1a779b
|
@ -892,7 +892,7 @@ int main(int argc, char* argv[])
|
||||||
Image img(argv[1]);
|
Image img(argv[1]);
|
||||||
float average = 0.0;
|
float average = 0.0;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for (double rotation = 0; rotation < 360; rotation += step)
|
for (double rotation = 0; rotation <= 360; rotation += step)
|
||||||
{
|
{
|
||||||
auto const before = chrono::high_resolution_clock::now();
|
auto const before = chrono::high_resolution_clock::now();
|
||||||
Image* const rotated = rotate(img, rotation);
|
Image* const rotated = rotate(img, rotation);
|
||||||
|
|
Loading…
Reference in a new issue