FRTE/IREX Ongoing
API Specification for the FRTE 1:N and IREX Evaluations
frvt_constants.h
1/*
2 * This software was developed at the National Institute of Standards and
3 * Technology (NIST) by employees of the Federal Government in the course
4 * of their official duties. Pursuant to title 17 Section 105 of the
5 * United States Code, this software is not subject to copyright protection
6 * and is in the public domain. NIST assumes no responsibility whatsoever for
7 * its use by other parties, and makes no guarantees, expressed or implied,
8 * about its quality, reliability, or any other characteristic.
9 */
10#ifndef FRVT_CONSTANTS_H_
11#define FRVT_CONSTANTS_H_
12
13#include <string>
14#include <frvt_constants_common.h>
15
16namespace FRVT_1N {
17 namespace Properties {
19 const std::string GALLERY_TYPE{"Gallery Type"};
20
22 const std::string APPLY_LONG_RANGE_PREPROC{"Apply Long Range Preprocessing"};
23 const std::string LONG_RANGE_IMAGE_OUTPUTDIR{"Long Range Image Output Directory"};
24 const std::string LONG_RANGE_NUM_FRAMES_TO_PREPROC{"Long Range Number of Frames to Preprocess"};
25
28 const std::string SEARCH_IMG_CSV{"Search Image CSV"};
29 const std::string GALLERY_ACTION{"Gallery Action"};
30
31 const std::string FUNCTION_TIMEOUT_SECS{"Function Timeout Seconds"};
32
33 /* Output directory and logs */
34 const std::string FINALIZE_LOG{"Finalize Log"};
35 const std::string FINALIZE_DEBUG_LOG{"Finalize Debug Log"};
36
37 /* Search parameters */
38 const std::string TEMPLATE_RS_CSV{"Template Recordstores CSV"};
39 const std::string CANDIDATE_LIST_LOG{"Candidate List Log"};
40 const std::string CANDIDATE_LIST_LENGTH{"Candidate List Length"};
41 }
42}
43
44#endif /* FRVT_CONSTANTS_H_ */