Commit cd888bcc authored by Davis King's avatar Davis King

merged

parents ec3c36fc 46079862
...@@ -90,6 +90,7 @@ namespace dlib ...@@ -90,6 +90,7 @@ namespace dlib
_at_start(true) _at_start(true)
{} {}
array(const array&) = delete;
array( array(
array&& item array&& item
) : array() ) : array()
......
...@@ -3,6 +3,9 @@ ...@@ -3,6 +3,9 @@
#ifndef DLIB_INTERPOlATIONh_ #ifndef DLIB_INTERPOlATIONh_
#define DLIB_INTERPOlATIONh_ #define DLIB_INTERPOlATIONh_
#include <thread>
#include <algorithm>
#include "interpolation_abstract.h" #include "interpolation_abstract.h"
#include "../pixel.h" #include "../pixel.h"
#include "../matrix.h" #include "../matrix.h"
...@@ -1543,33 +1546,29 @@ namespace dlib ...@@ -1543,33 +1546,29 @@ namespace dlib
<< "\n\t objects2.size(): " << objects2.size() << "\n\t objects2.size(): " << objects2.size()
); );
image_array_type new_images; using namespace impl;
std::vector<std::vector<T> > new_objects;
std::vector<std::vector<U> > new_objects2;
using namespace impl; image_array_type new_images(images.size() * angles.size());
std::vector<std::vector<T>> new_objects(images.size() * angles.size());
std::vector<std::vector<U>> new_objects2(images.size() * angles.size());
std::vector<T> objtemp; dlib::parallel_for(0, images.size(), [&](long j) {
std::vector<U> objtemp2; typename image_array_type::value_type temp;
typename image_array_type::value_type temp;
for (long i = 0; i < angles.size(); ++i) long dst_base = j * angles.size();
{ for (long i = 0; i < angles.size(); ++i)
for (unsigned long j = 0; j < images.size(); ++j)
{ {
long dst = dst_base + i;
const point_transform_affine tran = rotate_image(images[j], temp, angles(i)); const point_transform_affine tran = rotate_image(images[j], temp, angles(i));
new_images.push_back(std::move(temp)); exchange(new_images[dst], temp);
objtemp.clear();
for (unsigned long k = 0; k < objects[j].size(); ++k) for (unsigned long k = 0; k < objects[j].size(); ++k)
objtemp.push_back(tform_object(tran, objects[j][k])); new_objects[dst].push_back(tform_object(tran, objects[j][k]));
new_objects.push_back(objtemp);
objtemp2.clear();
for (unsigned long k = 0; k < objects2[j].size(); ++k) for (unsigned long k = 0; k < objects2[j].size(); ++k)
objtemp2.push_back(tform_object(tran, objects2[j][k])); new_objects2[dst].push_back(tform_object(tran, objects2[j][k]));
new_objects2.push_back(objtemp2);
} }
} });
new_images.swap(images); new_images.swap(images);
new_objects.swap(objects); new_objects.swap(objects);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment