-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtracked_object.cpp
38 lines (33 loc) · 1009 Bytes
/
tracked_object.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <segmentation_and_tracking/scene.h>
using namespace std;
namespace bfs = boost::filesystem;
using namespace Eigen;
TrackedObject::TrackedObject()
{
}
void TrackedObject::serialize(std::ostream& out) const
{
out.write((const char*)&id_, sizeof(int));
int buf = indices_.size();
out.write((const char*)&buf, sizeof(int));
for(size_t i = 0; i < indices_.size(); ++i)
out.write((const char*)&indices_[i], sizeof(int));
}
void TrackedObject::deserialize(std::istream& in)
{
in.read((char*)&id_, sizeof(int));
int num_indices;
in.read((char*)&num_indices, sizeof(int));
indices_.clear();
indices_.resize(num_indices);
for(int i = 0; i < num_indices; ++i)
in.read((char*)&indices_[i], sizeof(int));
}
void TrackedObject::generateImageCoords(Scene& sc) {
if (image_coords_.size() != 0) return;
for (int i = 0; i < indices_.size(); ++i) {
cv::Point point(sc.cam_points_(indices_[i], 0),
sc.cam_points_(indices_[i], 1));
image_coords_.push_back(point);
}
}