我正在开发一个框架,并且一直在使用 TCLAP 来处理命令行选项。当程序help
被调用时,我想打印它的参数用法自动分组在 categories。输出示例是:
$ ./program help
Learning Options
-t Train mode
-neg Specifies the path for the negative examples
-pos Specifies the path for the positive examples
Detection Options
-d Detection mode
-param Parameters file path
-o Output folder
-track Enables tracking
Feature Extraction Options
-w Window size
-feat Feature type. Available: SIFT and SURF.
我一直在查看TCLAP 的文档,但没有找到任何东西。我仍在研究这个StackOverflow 帖子。我发现这libobj
似乎可以做到这一点,但并不完全清楚。
我怎么能用 TCLAP 做到这一点?如果不可能,是否有另一个我可以使用的库?
Bonus -一个小型库,例如 TCLAP :-)