Changes between Version 63 and Version 64 of DevelopGuide


Ignore:
Timestamp:
Oct 14, 2008, 4:20:36 PM (16 years ago)
Author:
Frédéric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopGuide

    v63 v64  
    1111  * [#View View]
    1212 * [#OutputXMLfile Output XML file]
    13   * [#Description Description]
    14   * [#Exampleinmosaicmode Example in mosaic mode]
    15   * [#Exampleinpresetmode Example in preset mode]
    1613 * [#Distributing Distributing]
    1714  * [#Debianpackage Debian package]
     
    108105Papywizard can generate a xml data file. This file mainly contains all positions reached during shooting, and can be used by Autopano Giga to help positionning orphan pictures. This is very helpfull for high-resolution panos with deep blue sky, without details. Sift algorithm often fail to find control points in such areas.
    109106
    110 === Description ===
    111 
    112107The XML file is made of two parts: a header, containing global informations, and a shoot part, containing a list of all pictures positions. The exact header format depends of the mode (see examples below).
    113108
    114109This format is open, and can be used by anyone who wants to implement motorized panohead output data file. Feel free to contact me if you want to add some entries to support special features. The goal is to make some sort of standard format. More informations [http://www.autopano.fr/wiki/action/view/Fichier_de_données here].
    115 
    116 === Example in mosaic mode ===
    117 
    118 {{{
    119 <?xml version="1.0" encoding="utf-8"?>
    120 <papywizard version="0.9">
    121     <header>
    122         <shooting mode="mosaic">
    123             <stabilizationDelay>0.5</stabilizationDelay>
    124             <start>Mon Oct 13 10:52:33 2008</start>
    125             <end>Mon Oct 13 10:52:53 2008</end>
    126             <comment>Néron mountain</comment>
    127         </shooting>
    128         <camera>
    129             <timeValue>0.5</timeValue>
    130             <nbPicts>3</nbPicts>
    131             <sensor coef="1.6" ratio="3:2"/>
    132         </camera>
    133         <lens>
    134             <focal>17.0</focal>
    135         </lens>
    136         <mosaic>
    137             <nbPicts pitch="1" yaw="3"/>
    138             <overlap minimum="0.25" pitch="1.00" yaw="0.26"/>
    139             <cameraOrientation>portrait</cameraOrientation>
    140         </mosaic>
    141     </header>
    142     <shoot>
    143         <pict id="1" num="1">
    144             <time>Mon Oct 13 10:52:39 2008</time>
    145             <position pitch="0.0" yaw="-44.4"/>
    146         </pict>
    147         <pict id="2" num="2">
    148             <time>Mon Oct 13 10:52:40 2008</time>
    149             <position pitch="0.0" yaw="-44.4"/>
    150         </pict>
    151         <pict id="3" num="3">
    152             <time>Mon Oct 13 10:52:41 2008</time>
    153             <position pitch="0.0" yaw="-44.4"/>
    154         </pict>
    155         <pict id="4" num="1">
    156             <time>Mon Oct 13 10:52:45 2008</time>
    157             <position pitch="0.0" yaw="-9.3"/>
    158         </pict>
    159         <pict id="5" num="2">
    160             <time>Mon Oct 13 10:52:46 2008</time>
    161             <position pitch="0.0" yaw="-9.3"/>
    162         </pict>
    163         <pict id="6" num="3">
    164             <time>Mon Oct 13 10:52:47 2008</time>
    165             <position pitch="0.0" yaw="-9.3"/>
    166         </pict>
    167         <pict id="7" num="1">
    168             <time>Mon Oct 13 10:52:51 2008</time>
    169             <position pitch="0.0" yaw="25.7"/>
    170         </pict>
    171         <pict id="8" num="2">
    172             <time>Mon Oct 13 10:52:52 2008</time>
    173             <position pitch="0.0" yaw="25.7"/>
    174         </pict>
    175         <pict id="9" num="3">
    176             <time>Mon Oct 13 10:52:53 2008</time>
    177             <position pitch="0.0" yaw="25.7"/>
    178         </pict>
    179     </shoot>
    180 </papywizard>
    181 }}}
    182 
    183 === Example in preset mode ===
    184 
    185 {{{
    186 <?xml version="1.0" encoding="utf-8"?>
    187 <papywizard version="0.9">
    188     <header>
    189         <shooting mode="preset">
    190             <stabilizationDelay>0.5</stabilizationDelay>
    191             <start>Mon Oct 13 10:30:47 2008</start>
    192             <end>Mon Oct 13 10:31:40 2008</end>
    193             <comment>Inside my living room</comment>
    194         </shooting>
    195         <camera>
    196             <timeValue>0.5</timeValue>
    197             <nbPicts>3</nbPicts>
    198             <sensor coef="1.6" ratio="3:2"/>
    199         </camera>
    200         <lens>
    201             <focal>17.0</focal>
    202         </lens>
    203         <preset template="3@-15 + Z"/>
    204     </header>
    205     <shoot>
    206         <pict id="1" num="1">
    207             <time>Mon Oct 13 10:31:04 2008</time>
    208             <position pitch="-15.0" yaw="0.0"/>
    209         </pict>
    210         <pict id="2" num="2">
    211             <time>Mon Oct 13 10:31:05 2008</time>
    212             <position pitch="-15.0" yaw="0.0"/>
    213         </pict>
    214         <pict id="3" num="3">
    215             <time>Mon Oct 13 10:31:06 2008</time>
    216             <position pitch="-15.0" yaw="0.0"/>
    217         </pict>
    218         <pict id="4" num="1">
    219             <time>Mon Oct 13 10:31:16 2008</time>
    220             <position pitch="-15.0" yaw="120.0"/>
    221         </pict>
    222         <pict id="5" num="2">
    223             <time>Mon Oct 13 10:31:17 2008</time>
    224             <position pitch="-15.0" yaw="120.0"/>
    225         </pict>
    226         <pict id="6" num="3">
    227             <time>Mon Oct 13 10:31:18 2008</time>
    228             <position pitch="-15.0" yaw="120.0"/>
    229         </pict>
    230         <pict id="7" num="1">
    231             <time>Mon Oct 13 10:31:27 2008</time>
    232             <position pitch="-15.0" yaw="240.0"/>
    233         </pict>
    234         <pict id="8" num="2">
    235             <time>Mon Oct 13 10:31:28 2008</time>
    236             <position pitch="-15.0" yaw="240.0"/>
    237         </pict>
    238         <pict id="9" num="3">
    239             <time>Mon Oct 13 10:31:29 2008</time>
    240             <position pitch="-15.0" yaw="240.0"/>
    241         </pict>
    242         <pict id="10" num="1">
    243             <time>Mon Oct 13 10:31:38 2008</time>
    244             <position pitch="90.0" yaw="240.0"/>
    245         </pict>
    246         <pict id="11" num="2">
    247             <time>Mon Oct 13 10:31:39 2008</time>
    248             <position pitch="90.0" yaw="240.0"/>
    249         </pict>
    250         <pict id="12" num="3">
    251             <time>Mon Oct 13 10:31:40 2008</time>
    252             <position pitch="90.0" yaw="240.0"/>
    253         </pict>
    254     </shoot>
    255 </papywizard>
    256 }}}
    257110
    258111== Distributing ==