CMU-Perceptual-Computing-Lab / caffe_rtpose

Realtime C++ code for multi-person pose estimation
Other
356 stars 207 forks source link

--help response doesn't seem right #33

Closed jianzuguan closed 7 years ago

jianzuguan commented 7 years ago

Does anyone know how I can fix this?

./build/examples/rtpose/rtpose.bin --help

rtpose.bin: Warning: SetUsageMessage() never called

  Flags from /build/gflags-YYnfS9/gflags-2.1.2/src/gflags.cc:
    -flagfile (load flags from file) type: string default: ""
    -fromenv (set flags from the environment [use 'export FLAGS_flag1=value'])
      type: string default: ""
    -tryfromenv (set flags from the environment if present) type: string
      default: ""
    -undefok (comma-separated list of flag names that it is okay to specify on
      the command line even if the program does not define a flag with that
      name.  IMPORTANT: flags in this list that have arguments MUST use the
      flag=value format) type: string default: ""

  Flags from /build/gflags-YYnfS9/gflags-2.1.2/src/gflags_completions.cc:
    -tab_completion_columns (Number of columns to use in output for tab
      completion) type: int32 default: 80
    -tab_completion_word (If non-empty, HandleCommandLineCompletions() will
      hijack the process and attempt to do bash-style command line flag
      completion on this value.) type: string default: ""

  Flags from /build/gflags-YYnfS9/gflags-2.1.2/src/gflags_reporting.cc:
    -help (show help on all flags [tip: all flags can have two dashes])
      type: bool default: false currently: true
    -helpfull (show help on all flags -- same as -help) type: bool
      default: false
    -helpmatch (show help on modules whose name contains the specified substr)
      type: string default: ""
    -helpon (show help on the modules named by this flag value) type: string
      default: ""
    -helppackage (show help on all modules in the main package) type: bool
      default: false
    -helpshort (show help on only the main module for this program) type: bool
      default: false
    -helpxml (produce an xml version of help) type: bool default: false
    -version (show version and build info and exit) type: bool default: false

  Flags from examples/rtpose/rtpose.cpp:
    -caffemodel (Caffe model.) type: string
      default: "model/coco/pose_iter_440000.caffemodel"
    -caffeproto (Caffe deploy prototxt.) type: string
      default: "model/coco/pose_deploy_linevec.prototxt"
    -camera (The camera index for VideoCapture.) type: int32 default: 0
    -camera_resolution (Size of the camera frames to ask for.) type: string
      default: "1280x720"
    -fullscreen (Run in fullscreen mode (press f during runtime to toggle))
      type: bool default: false
    -image_dir (Process a directory of images.) type: string default: ""
    -net_resolution (Multiples of 16.) type: string default: "656x368"
    -no_display (Do not open a display window.) type: bool default: false
    -no_frame_drops (Dont drop frames.) type: bool default: false
    -no_text (Do not write text on output images.) type: bool default: false
    -num_gpu (The number of GPU devices to use.) type: int32 default: 1
    -num_scales (Number of scales to average) type: int32 default: 1
    -part_to_show (Part to show from the start.) type: int32 default: 0
    -resolution (The image resolution (display).) type: string
      default: "1280x720"
    -scale_gap (Scale gap between scales. No effect unless num_scales>1)
      type: double default: 0.29999999999999999
    -start_device (GPU device start number.) type: int32 default: 0
    -start_frame (Skip to frame # of video) type: int32 default: 0
    -start_scale (Initial scale. Must cv::Match net_resolution) type: double
      default: 1
    -video (Use a video file instead of the camera.) type: string default: ""
    -write_frames (Write frames with format prefix%06d.jpg) type: string
      default: ""
    -write_json (Write joint data with json format as prefix%06d.json)
      type: string default: ""

  Flags from src/logging.cc:
    -alsologtoemail (log messages go to these email addresses in addition to
      logfiles) type: string default: ""
    -alsologtostderr (log messages go to stderr in addition to logfiles)
      type: bool default: false
    -colorlogtostderr (color messages logged to stderr (if supported by
      terminal)) type: bool default: false
    -drop_log_memory (Drop in-memory buffers of log contents. Logs can grow
      very quickly and they are rarely read before they need to be evicted from
      memory. Instead, drop them from memory as soon as they are flushed to
      disk.) type: bool default: true
    -log_backtrace_at (Emit a backtrace when logging at file:linenum.)
      type: string default: ""
    -log_dir (If specified, logfiles are written into this directory instead of
      the default logging directory.) type: string default: ""
    -log_link (Put additional links to the log files in this directory)
      type: string default: ""
    -log_prefix (Prepend the log prefix to the start of each log line)
      type: bool default: true
    -logbuflevel (Buffer log messages logged at this level or lower (-1 means
      don't buffer; 0 means buffer INFO only; ...)) type: int32 default: 0
    -logbufsecs (Buffer log messages for at most this many seconds) type: int32
      default: 30
    -logemaillevel (Email log messages logged at this level or higher (0 means
      email all; 3 means email FATAL only; ...)) type: int32 default: 999
    -logmailer (Mailer used to send logging email) type: string
      default: "/bin/mail"
    -logtostderr (log messages go to stderr instead of logfiles) type: bool
      default: false
    -max_log_size (approx. maximum log file size (in MB). A value of 0 will be
      silently overridden to 1.) type: int32 default: 1800
    -minloglevel (Messages logged at a lower level than this don't actually get
      logged anywhere) type: int32 default: 0
    -stderrthreshold (log messages at or above this level are copied to stderr
      in addition to logfiles.  This flag obsoletes --alsologtostderr.)
      type: int32 default: 2
    -stop_logging_if_full_disk (Stop attempting to log to disk if the disk is
      full.) type: bool default: false

  Flags from src/utilities.cc:
    -symbolize_stacktrace (Symbolize the stack trace in the tombstone)
      type: bool default: true

  Flags from src/vlog_is_on.cc:
    -v (Show all VLOG(m) messages for m <= this. Overridable by --vmodule.)
      type: int32 default: 0
    -vmodule (per-module verbose level. Argument is a comma-separated list of
      <module name>=<log level>. <module name> is a glob pattern, matched
      against the filename base (that is, name ignoring .cc/.h./-inl.h). <log
      level> overrides any value given by --v.) type: string default: ""
gineshidalgo99 commented 7 years ago

We do not support rt_pose any longer, please move to OpenPose: https://github.com/CMU-Perceptual-Computing-Lab/openpose