File size: 3,319 Bytes
7fc5a59 | 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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | #ifndef OPENPOSE_UTILITIES_CHECK_HPP
#define OPENPOSE_UTILITIES_CHECK_HPP
#include <openpose/core/common.hpp>
namespace op
{
// CHECK, CHECK_EQ, CHECK_NE, CHECK_LE, CHECK_LT, CHECK_GE, and CHECK_GT
template<typename T>
void checkBool(
const bool condition, const T& message = "", const int line = -1, const std::string& function = "",
const std::string& file = "")
{
if (!condition)
error("Check failed: " + tToString(message), line, function, file);
}
template<typename T, typename T1, typename T2>
void checkEqual(
const T1& conditionA, const T2& conditionB, const T& message = "", const int line = -1,
const std::string& function = "", const std::string& file = "")
{
if (conditionA != conditionB)
error("CheckE failed (" + tToString(conditionA) + " vs. " + tToString(conditionB) + "): "
+ tToString(message), line, function, file);
}
template<typename T, typename T1, typename T2>
void checkNotEqual(
const T1& conditionA, const T2& conditionB, const T& message = "", const int line = -1,
const std::string& function = "", const std::string& file = "")
{
if (conditionA == conditionB)
error("CheckNE failed (" + tToString(conditionA) + " vs. " + tToString(conditionB) + "): "
+ tToString(message), line, function, file);
}
template<typename T, typename T1, typename T2>
void checkLessOrEqual(
const T1& conditionA, const T2& conditionB, const T& message = "", const int line = -1,
const std::string& function = "", const std::string& file = "")
{
if (conditionA > conditionB)
error("CheckLE failed (" + tToString(conditionA) + " vs. " + tToString(conditionB) + "): "
+ tToString(message), line, function, file);
}
template<typename T, typename T1, typename T2>
void checkLessThan(
const T1& conditionA, const T2& conditionB, const T& message = "", const int line = -1,
const std::string& function = "", const std::string& file = "")
{
if (conditionA >= conditionB)
error("CheckLT failed (" + tToString(conditionA) + " vs. " + tToString(conditionB) + "): "
+ tToString(message), line, function, file);
}
template<typename T, typename T1, typename T2>
void checkGreaterOrEqual(
const T1& conditionA, const T2& conditionB, const T& message = "", const int line = -1,
const std::string& function = "", const std::string& file = "")
{
if (conditionA < conditionB)
error("CheckGE failed (" + tToString(conditionA) + " vs. " + tToString(conditionB) + "): "
+ tToString(message), line, function, file);
}
template<typename T, typename T1, typename T2>
void checkGreaterThan(
const T1& conditionA, const T2& conditionB, const T& message = "", const int line = -1,
const std::string& function = "", const std::string& file = "")
{
if (conditionA <= conditionB)
error("CheckGT failed (" + tToString(conditionA) + " vs. " + tToString(conditionB) + "): "
+ tToString(message), line, function, file);
}
}
#endif // OPENPOSE_UTILITIES_CHECK_HPP
|