Home | History | Annotate | only in /system/media/camera/docs
Up to higher level directory
NameDateSize
.gitignore06-Dec-20166
__init__.py06-Dec-2016664
ACameraMetadata.mako06-Dec-20163.1K
camera_device_info.mako06-Dec-20162.5K
camera_device_info.proto06-Dec-20167.1K
camera_metadata_tag_info.mako06-Dec-20163.2K
camera_metadata_tags.mako06-Dec-20163.4K
CameraCharacteristicsKeys.mako06-Dec-2016749
CameraDeviceInfo.mako06-Dec-20161.6K
CameraMetadataEnums.mako06-Dec-20163.7K
CameraMetadataKeys.mako06-Dec-20164.2K
CaptureRequestKeys.mako06-Dec-2016744
CaptureResultKeys.mako06-Dec-2016742
CaptureResultTest.mako06-Dec-20161.6K
docs.html06-Dec-20161.1M
html.mako06-Dec-201613.8K
images/06-Dec-2016
metadata-check-dependencies06-Dec-20162.3K
metadata-generate06-Dec-20168.9K
metadata-parser-sanity-check06-Dec-20161.8K
metadata-validate06-Dec-2016957
metadata_helpers.py06-Dec-201638.6K
metadata_helpers_test.py06-Dec-20167.7K
metadata_model.py06-Dec-201644.4K
metadata_model_test.py06-Dec-20164K
metadata_parser_xml.py06-Dec-20169.2K
metadata_properties.xml06-Dec-2016439.2K
metadata_properties.xsd06-Dec-201612.1K
metadata_template.mako06-Dec-20165.9K
metadata_validate.py06-Dec-20169.4K
ndk_camera_metadata_tags.mako06-Dec-20165K
ndk_metadata_properties.xml06-Dec-2016438.2K
README.md06-Dec-20161,020

README.md

      1 # Camera Metadata XML
      2 ## Introduction
      3 This is a set of scripts to manipulate the camera metadata in an XML form.
      4 
      5 ## Generated Files
      6 Many files can be generated from XML, such as the documentation (html/pdf),
      7 C code, Java code, and even XML itself (as a sanity check).
      8 
      9 ## Dependencies
     10 * Python 2.7.x+
     11 * Beautiful Soup 4+ - HTML/XML parser, used to parse `metadata_properties.xml`
     12 * Mako 0.7+         - Template engine, needed to do file generation.
     13 * Markdown 2.1+     - Plain text to HTML converter, for docs formatting.
     14 * Tidy              - Cleans up the XML/HTML files.
     15 * XML Lint          - Validates XML against XSD schema.
     16 
     17 ## Quick Setup (Ubuntu Precise):
     18 sudo apt-get install python-mako
     19 sudo apt-get install python-bs4
     20 sudo apt-get install python-markdown
     21 sudo apt-get install tidy
     22 sudo apt-get install libxml2-utils #xmllint
     23 
     24 ## Quick Setup (MacPorts)
     25 sudo port install py27-beautifulsoup4
     26 sudo port install py27-mako
     27 sudo port install py27-markdown
     28 sudo port install tidy
     29 sudo port install libxml2 #xmllint
     30