home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / softsys / khoros / 3121 next >
Encoding:
Text File  |  1992-12-21  |  5.1 KB  |  147 lines

  1. Newsgroups: comp.soft-sys.khoros
  2. Path: sparky!uunet!spool.mu.edu!caen!hellgate.utah.edu!lanl!kelly
  3. From: kelly@c3serve.c3.lanl.gov (Patrick M. Kelly)
  4. Subject: C-3 Toolbox Available
  5. Message-ID: <1992Dec21.183717.6049@newshost.lanl.gov>
  6. Originator: kelly@wienerdog.c3.lanl.gov
  7. Sender: news@newshost.lanl.gov
  8. Organization: Los Alamos National Laboratory
  9. Date: Mon, 21 Dec 1992 18:37:17 GMT
  10. Lines: 135
  11.  
  12.  
  13. Happy Holidays to Everyone !
  14.  
  15. There is a new toolbox now available in the pub/khoros/contrib directory
  16. on pprg.eece.unm.edu.  It is in the file "c3.tar.Z".  A description of 
  17. routines is given below.  These are mostly generic routines that I have 
  18. written over the past year.  If you get the toolbox, and find a use for
  19. these routines, I would be interested in hearing from you.  Please send
  20. email to "kelly@lanl.gov".  Thank you.
  21.  
  22. Of course, I am certainly interested in hearing about bugs/problems/suggestions
  23. or whatever, but I can't promise to fix them.  They are offerred "as is".  
  24. A copy of this posting will be stored in "README.c3".
  25.  
  26. Feel free to get this toolbox from pprg.eece.unm.edu and use the routines, 
  27. but please do not redistribute the code in any form. 
  28.  
  29. There is an example workspace you can run in $C3/data/sample.wsp.01.Z
  30. which identifies letters, words, and paragraphs from scanned text.
  31.  
  32.      Patrick M. Kelly
  33.      Computer Research Group
  34.      MS B-265
  35.      Los Alamos National Laboratory
  36.      Los Alamos, NM  87545
  37.  
  38.  
  39. The toolbox file entry is....  
  40.  
  41. C3:{path_to_toolbox_directory}:c3 Toolbox:A toolbox for c3:Patrick Kelly and James White:$C3/.Toolbox_info
  42.  
  43.  
  44. All code in this toolbox is subject to the following copyright/disclaimer:
  45.  
  46.    ######################################################################
  47.    #                                                                    #
  48.    #  Copyright, 1992, The Regents of the University of California.     #
  49.    #  This software was produced under a U.S. Government contract       #
  50.    #  (W-7405-ENG-36) by the Los Alamos National Laboratory, which is   #
  51.    #  operated by the University of California for the U.S. Department  #
  52.    #  of Energy.  The U.S. Government is licensed to use, reproduce,    #
  53.    #  and distribute this software.  Neither the Government nor the     #
  54.    #  University makes any warranty, express or implied, or assumes     #
  55.    #  any liability responsibility for the use of this software.        #
  56.    #                                                                    #
  57.    ######################################################################
  58.  
  59. This toolbox was developed in the Computer Research Group at Los Alamos
  60. National Laboratory.  Included are several programs for region growing
  61. applications, as well as many other miscellaneous programs.  A quick 
  62. overview of routines is given below....
  63.  
  64.      SHORT DESCRIPTION OF ROUTINES
  65.  
  66.      Grayscale Morphology -
  67.           Perform grayscale morphological operations.
  68.  
  69.      Find 1-D Peaks -
  70.           Locate peaks in one-dimensional data.
  71.  
  72.      Merge 1-D Peaks -
  73.           Merge adjacent peaks in one-dimensional peak data.
  74.  
  75.      Delete 1-D Peaks -
  76.           Delete small peakse from one-dimensional peak data.
  77.  
  78.      2-D Region Growing -
  79.           Grows and labels regions.
  80.  
  81.      2-D Polar Regions -
  82.           Postprocessor for growing regions in data assumed to be
  83.           stored in polar coordinates.
  84.  
  85.      3-D Region Growing -
  86.           Postprocessor for growing regions in 3-D data.
  87.  
  88.      2-D Region Removal -
  89.           Removes small or large regions from a BIT image.
  90.  
  91.      2-D Region Sizes -
  92.           Calculates the sizes and extents of regions in a BIT
  93.           image.
  94.  
  95.      2-D Region List Trim -
  96.           Delete entries from a list of regions that do not meet
  97.           a set of criteria.
  98.  
  99.      2-D Position Trim -
  100.           Delete entries from a list of regions that do not lie
  101.           within specified areas for the image.
  102.  
  103.      2-D Overlap Regions -
  104.           Select entries from a list of regions that overlap one
  105.           another.
  106.  
  107.      2-D Merge Regions -
  108.           Merge bounding boxes that are close to one another.
  109.  
  110.      2-D Merge w/Noise -
  111.           Merge bounding boxes that are close to one another and
  112.           have at least one other (noise) region between them.
  113.  
  114.      2-D Copy Regions -
  115.           Copy certain regions from one BIT image to another.
  116.  
  117.      Build Bounding Boxes -
  118.           Take bounding box information and draw boxes into a new
  119.           BIT image.
  120.  
  121.      Count 1 Bits -
  122.           Count the number of ones in a BIT image.
  123.  
  124.      Merge Data Files -
  125.           Merge two data files into one data set.
  126.  
  127.      Put Data In 1 Band -
  128.           Put multiple image bands into a single band for easy
  129.           viewing of 3-D data.
  130.  
  131.      Put Data in Map -
  132.           Put image data into a colormap.
  133.  
  134.      VIFF Information  -
  135.           Put VIFF header information into image data.
  136.  
  137.      Remove File -
  138.           Delete a temporary file when it is no longer needed.
  139.  
  140.  
  141.  
  142. -- 
  143. Patrick M. Kelly   
  144. C-3  Mail Stop B-265                     Phone:    (505) 665-4665  
  145. Los Alamos National Laboratory           FAX:      (505) 665-5220 
  146. Los Alamos, NM  87545                    Email:    kelly@lanl.gov
  147.