mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-22 14:38:14 +02:00
89 lines
2.3 KiB
C++
89 lines
2.3 KiB
C++
|
|
#include "catch.hpp"
|
|
|
|
#include "ClientSocket.h"
|
|
#include "Timer.h"
|
|
#include "logger.h"
|
|
#include "network_utils.h"
|
|
#include "slsDetector.h"
|
|
#include "sls_detector_defs.h"
|
|
#include "sls_detector_exceptions.h"
|
|
#include "sls_detector_funcs.h"
|
|
#include <iomanip>
|
|
#include <iostream>
|
|
#include <vector>
|
|
|
|
#include <arpa/inet.h>
|
|
#include <netdb.h>
|
|
#include <string>
|
|
#include <sys/socket.h>
|
|
#include <sys/types.h>
|
|
|
|
#include <algorithm>
|
|
|
|
#include "network_utils.h"
|
|
|
|
using namespace sls;
|
|
using ROI = slsDetectorDefs::ROI;
|
|
|
|
// Easy printing of an ROI
|
|
std::ostream &operator<<(std::ostream &out, const ROI &r) {
|
|
return out << "xmin: " << std::setw(5) << r.xmin
|
|
<< " xmax: " << std::setw(5) << r.xmax
|
|
<< " ymin: " << std::setw(5) << r.ymin
|
|
<< " ymax: " << std::setw(5) << r.ymax;
|
|
}
|
|
|
|
int main() {
|
|
|
|
std::cout << "nullptr: " << sizeof(nullptr) << "\n";
|
|
// int ret[]{0,0,0};
|
|
// for (auto i: ret)
|
|
// std::cout << i << "\n";
|
|
// uint32_t imageSize = 101;
|
|
// uint32_t packetSize = 100;
|
|
// std::cout << "a: " << std::ceil((double)imageSize / (double)packetSize) <<'\n';
|
|
// std::cout << "b: " << imageSize / packetSize <<'\n';
|
|
// std::cout << "c: " << static_cast<double>(imageSize / packetSize) << '\n';
|
|
// std::cout << "c: " << (imageSize + packetSize-1) / packetSize << '\n';
|
|
|
|
// slsDetectorDefs::ROI roilimits[5];
|
|
// roilimits[0].xmin = 5;
|
|
// roilimits[0].xmax = 12;
|
|
// roilimits[0].ymin = 5;
|
|
// roilimits[0].ymax = 15;
|
|
|
|
// roilimits[1].xmin = 0;
|
|
// roilimits[1].xmax = 3;
|
|
// roilimits[1].ymin = 20;
|
|
// roilimits[1].ymax = 25;
|
|
|
|
// roilimits[2].xmin = 500;
|
|
// roilimits[2].xmax = 600;
|
|
// roilimits[2].ymin = 100;
|
|
// roilimits[2].ymax = 200;
|
|
|
|
// roilimits[3].xmin = 300;
|
|
// roilimits[3].xmax = 500;
|
|
// roilimits[3].ymin = 800;
|
|
// roilimits[3].ymax = 900;
|
|
|
|
// roilimits[4].xmin = 1000;
|
|
// roilimits[4].xmax = 2000;
|
|
// roilimits[4].ymin = 300;
|
|
// roilimits[4].ymax = 500;
|
|
|
|
// std::cout << "Before sorting:\n";
|
|
// for (auto r : roilimits) {
|
|
// std::cout << r << '\n';
|
|
// }
|
|
|
|
// std::sort(std::begin(roilimits), std::end(roilimits),
|
|
// [](ROI a, ROI b) { return a.xmin < b.xmin; });
|
|
|
|
// std::cout << "After sorting: \n";
|
|
// for (auto r : roilimits) {
|
|
// std::cout << r << '\n';
|
|
// }
|
|
}
|