NAME

     histogram_show - prints an ASCII representation of a  histo-
     gram to stdout

SYNOPSIS

     #include "histogram.h"

     void histogram_show(float **histogram)
      <histogram> - a 2-D float arrary of the histogram data

PATH

     $CVIPHOME/HISTOGRAM/histogram.c

DESCRIPTION

     histogram_show prints a  histogram  defined  by  the  double
     pointer  to  float which is passed to the function to stdout
     in ASCII representation.  The output will appear as such:
          .
          121***********
          122*****************
          123**************************
          .

     where the number represents the grey level  value,  and  the
     asterisks  represent  the  probability of occurance for that
     grey level.  The maximum probability to occur will occupy 75
     asterisks.   The maximum probability will also be printed at
     the end of the printout.

RETURN VALUES

     This function returns void

BUGS

     none

SEE ALSO

     get_histogram,        get_histogram_Image,        hist_spec,
     histogram_show, histogram_spec, showMax_histogram

AUTHOR

     Copyright (C) 1992, 1996 SIUE -  by  Scott  E.  Umbaugh  and
     David A. Lyons.