Changes between Initial Version and Version 1 of create_histo


Ignore:
Timestamp:
May 14, 2007, 11:29:58 AM (17 years ago)
Author:
mlucas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • create_histo

    v1 v1  
     1= create_histo =
     2create histogram
     3{{{
     4Usage: create_histo <args>
     5Options:
     6  --disable-elev    Will disable the elevation
     7  --disable-notify  Takes an argument. Arguments are ALL, WARN, NOTICE, INFO,
     8                    FATAL, DEBUG.  If you want multiple disables then just do
     9                    multiple --disable-notify on the command line.  All argument
     10                    are case insensitive.  Default is all are enabled.
     11  --ossim-logfile   takes a logfile as an argument.  All output messages are
     12                    redirected to the specified log file.  By default there is
     13                    no log file and all messages are enabled.
     14  -K                specify individual keywords to add to the preferences
     15                    keyword list: name=value
     16  -P                specify a preference file to load
     17  -T                specify the classes to trace, ex: ossimInit|ossimImage.*
     18                    will trace ossimInit and all ossimImage classes
     19  -h or --help      Display this information
     20  -i                <image_file> Creates a histogram from the image_file.
     21  -l                <res_level> Output the specified number of res levels (not
     22                    supported for import histogram -i option
     23  -o                <output_file> Output the histogram to the indicated file.
     24  -p                <histogram_file> Imports imagelinks proprietary
     25                    histogram_file.
     26
     27examples:
     28 create_histo foo.tif
     29            Will create a histogram for the input image and call
     30            it foo.his
     31
     32 create_histo -i foo.tif -o foo.his
     33            this will compute a histogram from the input foo.tif
     34            and write it to foo.his
     35
     36 create_histo -p foo2.his -o foo.his
     37            will import the proprietary histogram file and output
     38            an ossim histogram file to foo.his
     39
     40NOTE:  If no output is given it will default to output.his
     41       unless the special case of a single input image is given
     42
     43}}}