Commit c2d82dbd362a1ead179871859a3e42cbfa4115d3
1 parent
ee63cd2e
export BEE symbols
Showing
1 changed file
with
11 additions
and
11 deletions
openbr/core/bee.h
| @@ -34,21 +34,21 @@ namespace BEE | @@ -34,21 +34,21 @@ namespace BEE | ||
| 34 | const MaskValue DontCare(0x00); | 34 | const MaskValue DontCare(0x00); |
| 35 | 35 | ||
| 36 | // Sigset | 36 | // Sigset |
| 37 | - br::FileList readSigset(const br::File &sigset, bool ignoreMetadata = false); | ||
| 38 | - void writeSigset(const QString &sigset, const br::FileList &files, bool ignoreMetadata = false); | 37 | + BR_EXPORT br::FileList readSigset(const br::File &sigset, bool ignoreMetadata = false); |
| 38 | + BR_EXPORT void writeSigset(const QString &sigset, const br::FileList &files, bool ignoreMetadata = false); | ||
| 39 | 39 | ||
| 40 | // Matrix | 40 | // Matrix |
| 41 | - cv::Mat readMatrix(const br::File &mat, QString *targetSigset = NULL, QString *querySigset = NULL); | ||
| 42 | - void writeMatrix(const cv::Mat &m, const QString &fileName, const QString &targetSigset = "Unknown_Target", const QString &querySigset = "Unknown_Query"); | ||
| 43 | - void readMatrixHeader(const QString &matrix, QString *targetSigset, QString *querySigset); | ||
| 44 | - void writeMatrixHeader(const QString &matrix, const QString &targetSigset, const QString &querySigset); | 41 | + BR_EXPORT cv::Mat readMatrix(const br::File &mat, QString *targetSigset = NULL, QString *querySigset = NULL); |
| 42 | + BR_EXPORT void writeMatrix(const cv::Mat &m, const QString &fileName, const QString &targetSigset = "Unknown_Target", const QString &querySigset = "Unknown_Query"); | ||
| 43 | + BR_EXPORT void readMatrixHeader(const QString &matrix, QString *targetSigset, QString *querySigset); | ||
| 44 | + BR_EXPORT void writeMatrixHeader(const QString &matrix, const QString &targetSigset, const QString &querySigset); | ||
| 45 | 45 | ||
| 46 | // Mask | 46 | // Mask |
| 47 | - void makeMask(const QString &targetInput, const QString &queryInput, const QString &mask); | ||
| 48 | - cv::Mat makeMask(const br::FileList &targets, const br::FileList &queries, int partition = 0); | ||
| 49 | - void makePairwiseMask(const QString &targetInput, const QString &queryInput, const QString &mask); | ||
| 50 | - cv::Mat makePairwiseMask(const br::FileList &targets, const br::FileList &queries, int partition = 0); | ||
| 51 | - void combineMasks(const QStringList &inputMasks, const QString &outputMask, const QString &method); | 47 | + BR_EXPORT void makeMask(const QString &targetInput, const QString &queryInput, const QString &mask); |
| 48 | + BR_EXPORT cv::Mat makeMask(const br::FileList &targets, const br::FileList &queries, int partition = 0); | ||
| 49 | + BR_EXPORT void makePairwiseMask(const QString &targetInput, const QString &queryInput, const QString &mask); | ||
| 50 | + BR_EXPORT cv::Mat makePairwiseMask(const br::FileList &targets, const br::FileList &queries, int partition = 0); | ||
| 51 | + BR_EXPORT void combineMasks(const QStringList &inputMasks, const QString &outputMask, const QString &method); | ||
| 52 | } | 52 | } |
| 53 | 53 | ||
| 54 | #endif // BEE_BEE_H | 54 | #endif // BEE_BEE_H |