Changes between Version 5 and Version 6 of Fossils


Ignore:
Timestamp:
Jun 13, 2008, 2:48:06 PM (16 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Fossils

    v5 v6  
    1 Fossils
    2 
    31= Hominids@home =
    42
     
    97
    108A given rig session will yield
    11  * A number of cameras with ~1000 images.  Each image will have a timestamp.  File names may not be unique across cameras.
     9 * A number of cameras with ~1000 images.  Image are hi-res (~2Kx3K pixels).  Each image has a timestamp.  File names may not be unique across cameras.
    1210 * A GPS log file with a sequence of timestamped waypoints.
    1311
     
    1614Then you'll connect the various cameras, one at a time, to USB,
    1715and it will download their images.
    18 The outputs:
     16This will produce a "batch" of images, consisting of:
    1917
    20  * A directory of all the images, with unique filenames.
    21  * An 'image index' file, one line per image.  For each image:
    22   * time
    23   * lat/long
    24   * filename
    25   * estimated size factor (meters/pixel)
    26 
    27 == Loading images on the server ==
     18 * A directory of the images, with filenames that are unique within the batch.
     19 * A 'batch description' file, JSON format. Includes
     20  * Batch name (descriptive)
     21  * And for each image:
     22   * time
     23   * lat/long of center of image (estimated from image timestamp and GPS log)
     24   * filename
     25   * x/y size, pixels
     26   * estimated size factor (meters/pixel)
    2827
    2928We'll develop a script '''load_images''' that takes the above info
    30 and loads it into the Bossa database.
    31 Each run of this script produces a "batch" of jobs
     29and does the following:
     30 * Create a Bossa "batch" record
     31 * Copy the images to a directory whose name is the batch ID
     32 * Create medium-res (~1024x768) versions of images.
     33 * Creates a Bossa job record for each image.
     34Each run of this script produces a batch of jobs
    3235that can be managed as a unit (see below).
    3336Initially the state of the batch is "pending",