-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtils.h
27 lines (20 loc) · 845 Bytes
/
Utils.h
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
#pragma once
#include <QRectF>
#include <QVariantMap>
#include <functional>
#include <cassert>
// TODO: Should be moved to datasetproject class
void extractClassBoxes(QVariantMap::iterator datasetIt, std::function<void(QString const&, QRectF&&)>&& extractedClassBoxFn);
auto toAbsolute(QPointF const& in, QSize const& size) noexcept -> QPoint;
auto toAbsolute(QRectF const& in, QSize const& size) noexcept -> QRect;
auto fromAbsolute(QPoint const& in, QSize const& size) noexcept -> QPointF;
auto fromAbsolute(QRect const& in, QSize const& size) noexcept -> QRectF;
#if defined(_MSC_VER) || (__cplusplus <= 201402L)
namespace std {
template<class T>
constexpr const T &clamp(const T &v, const T &lo, const T &hi) {
assert(!(hi < lo));
return (v < lo) ? lo : (hi < v) ? hi : v;
}
} /// end namespace std
#endif