tree: 5b4262a910a9a808c7b21f01288e063cf84a2828 [path history] [tgz]
  1. .gitignore
  2. __init__.py
  3. camera_metadata_tag_info.mako
  4. camera_metadata_tags.mako
  5. CameraMetadataEnums.mako
  6. CameraMetadataKeys.mako
  7. CameraPropertiesKeys.mako
  8. CameraPropertiesTest.mako
  9. CaptureRequestKeys.mako
  10. CaptureResultKeys.mako
  11. docs.html
  12. html.mako
  13. metadata-check-dependencies
  14. metadata-generate
  15. metadata-parser-sanity-check
  16. metadata-validate
  17. metadata_helpers.py
  18. metadata_helpers_test.py
  19. metadata_model.py
  20. metadata_model_test.py
  21. metadata_parser_xml.py
  22. metadata_properties.xml
  23. metadata_properties.xsd
  24. metadata_template.mako
  25. metadata_validate.py
  26. README.md
camera/docs/README.md

Camera Metadata XML

Introduction

This is a set of scripts to manipulate the camera metadata in an XML form.

Generated Files

Many files can be generated from XML, such as the documentation (html/pdf), C code, Java code, and even XML itself (as a sanity check).

Dependencies

  • Python 2.7.x+
  • Beautiful Soup 4+ - HTML/XML parser, used to parse metadata_properties.xml
  • Mako 0.7+ - Template engine, needed to do file generation
  • Tidy - Cleans up the XML/HTML files.
  • XML Lint - Validates XML against XSD schema

Quick Setup (Ubuntu Precise):

sudo apt-get install python-mako sudo apt-get install python-bs4 sudo apt-get install tidy sudo apt-get install libxml2-utils #xmllint

Quick Setup (MacPorts)

sudo port install py27-beautifulsoup4 sudo port install py27-mako sudo port install tidy sudo port install libxml2 #xmllint