change name of conversion step

This commit is contained in:
falsycat 2022-09-07 08:59:59 +09:00
parent e0f175c6ba
commit 74efa6d70c
4 changed files with 7 additions and 10 deletions

View File

@ -1,10 +1,10 @@
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${BLKY_CXX_FLAGS} -I ${PROJECT_SOURCE_DIR}")
add_executable(bidx_video common.hh bidx_video.cc)
target_link_libraries(bidx_video PRIVATE args minimp4 openh264)
add_executable(fidx_video common.hh fidx_video.cc)
target_link_libraries(fidx_video PRIVATE args minimp4 openh264)
add_executable(video_fprob common.hh video_fprob.cc)
target_link_libraries(video_fprob PRIVATE args minimp4 openh264)
add_executable(cprob_code common.hh cprob_code.cc)
target_link_libraries(cprob_code PRIVATE args minimp4 openh264)
add_executable(fcprob_fcode common.hh fcprob_fcode.cc)
target_link_libraries(fcprob_fcode PRIVATE args)

View File

@ -10,9 +10,6 @@
#include <vector>
#include <args.hxx>
#include <minimp4.h>
#include <codec/api/wels/codec_api.h>
#include "conv/common.hh"
@ -21,7 +18,7 @@ namespace param {
using namespace ::args;
ArgumentParser parser {
"converter: code probability matrix -> code"
"converter: feature code probability matrix -> feature code"
};
HelpFlag help {
parser, "help", "display this menu", {'h', "help"},

View File

@ -21,7 +21,7 @@ namespace param {
using namespace ::args;
ArgumentParser parser {
"converter: video + indices -> video"
"converter: feature indices + host -> stego"
};
HelpFlag help {
parser, "help", "display this menu", {'h', "help"},

View File

@ -20,7 +20,7 @@ namespace param {
using namespace ::args;
ArgumentParser parser {
"converter: video -> feature probability matrix"
"converter: stego -> feature probability matrix"
};
HelpFlag help {
parser, "help", "display this menu", {'h', "help"},