1. 20 9月, 2017 2 次提交
  2. 19 9月, 2017 2 次提交
  3. 18 9月, 2017 4 次提交
    • G
      Removed all sign warnings · 25d021e7
      gineshidalgo99 提交于
      25d021e7
    • G
      Updated gitignore · 02354bb3
      gineshidalgo99 提交于
      02354bb3
    • G
      Updated instructions · 030e3a4f
      Gines 提交于
      030e3a4f
    • F
      Jetson TX2 JetPack 3.1 install scripts (#245) · 4e9766f1
      Florent Buisson 提交于
      * Install scripts and configurations for Jetson TX2 with JetPack 3.1
      
      * All working, fixed missing warning message.
      
      * Added documentation for Jetson TX2 installation.
      
      * Rename Makefile.config.Ubuntu16_cuda8.JetsonTX2 to Makefile.config.Ubuntu16_cuda8_JetsonTX2
      
      * Rename Makefile.config.Ubuntu16_cuda8.JetsonTX2 to Makefile.config.Ubuntu16_cuda8_JetsonTX2
      
      * Update installation_jetson_tx2.md
      
      * Update install_openpose_JetsonTX2_JetPack3.1.sh
      
      * Update install_caffe_JetsonTX2_JetPack3.1.sh
      4e9766f1
  4. 17 9月, 2017 1 次提交
  5. 12 9月, 2017 4 次提交
  6. 11 9月, 2017 2 次提交
  7. 08 9月, 2017 1 次提交
  8. 07 9月, 2017 1 次提交
  9. 03 9月, 2017 1 次提交
  10. 02 9月, 2017 2 次提交
  11. 29 8月, 2017 2 次提交
  12. 28 8月, 2017 3 次提交
  13. 26 8月, 2017 1 次提交
  14. 25 8月, 2017 1 次提交
  15. 24 8月, 2017 4 次提交
  16. 22 8月, 2017 2 次提交
  17. 20 8月, 2017 1 次提交
  18. 11 8月, 2017 2 次提交
  19. 01 8月, 2017 3 次提交
  20. 26 7月, 2017 1 次提交
    • X
      fix wrong json file format (#157) · 23f10ff6
      xfanplus 提交于
      * fix wrong json file format
      
      COCO challenge only has 17 keypoints, so indexesInCocoOrder.size()==17.
      openpose added the neck keypoint (index 1), therefore numberBodyParts==18.
      numberBodyParts-1==17, Statement `if (bodyPart < numberBodyParts-1)` adds a comma for  every bodyPart ([0..16]), add a extra comma in the end, causing a bad json format file, which can not be proporly parsed.
      
      * Update cocoJsonSaver.cpp
      23f10ff6