-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
32 lines (25 loc) · 914 Bytes
/
main.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
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"
#include "PixelCollector.hpp"
#include <iostream>
#include <iomanip>
std::ostream& operator<<(std::ostream& stream, const PixelCollector::AABB& box) {
using namespace std;
stream << "AABB{ ("
<< box.left << ", " << box.top << "), ("
<< box.width << ", " << box.height << "), 0x"
<< setfill('0') << setw(2) << hex << (int) box.color.red
<< setfill('0') << setw(2) << hex << (int) box.color.green
<< setfill('0') << setw(2) << hex << (int) box.color.blue
<< " }";
return stream;
}
int main() {
using namespace PixelCollector;
int width, height, channels;
unsigned char * data = stbi_load("sample.png", &width, &height, &channels, 3);
std::vector<AABB> boxes;
Color white = {255,255,255};
collect(data, width, height, channels, boxes, white);
for(AABB& box : boxes) std::cout << box << "\n";
}