Metadata-Version: 2.1
Name: image-blobs
Version: 0.1.0
Summary: Analysis for gray scale images containing gaussian shaped blobs
Home-page: https://github.com/mdavidsaver/blobs
Author: Michael Davidsaver
Author-email: mdavidsaver@gmail.com
License: GPL-3+
Description: BLOBs
        =====
        
        [Home](https://github.com/mdavidsaver/image-blobs)
        [PYPI](https://pypi.org/project/image-blobs/)
        
        Analysis of gray scale images containing gaussian shaped blobs.
        Blobs should not overlap in 2d, but may overlap in projection.
        Entry point is `blobs.find_blobs()`.
        
        ```py
        from image_blobs import find_blobs
        from image_blobs.util import make_image, show_features
        shape = (100, 200) # 200x100
        Fs = [
            #  X   Y  W  H  A    IDX (ignored as input, unique in output)
            (160, 25, 4, 4, 4,   0),
            (150, 50, 5, 3, 5,   0),
            ( 40, 25, 4, 4, 3,   0),
            (100, 50, 4, 4, 2.5, 0),
        ]
        print('Actual')
        print(Fs)
        img = make_image(shape, Fs, dtype='u1')
        features = find_blobs(img)
        print('Computed (order may differ)')
        print(features)
        show_features(img, features, sigma=3)
        ```
        
        ![Demo output](https://raw.githubusercontent.com/mdavidsaver/blobs/master/blobsdemo.png)
        
Keywords: image fitting
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: Operating System :: OS Independent
Requires-Python: >=2.7
Description-Content-Type: text/markdown
Provides-Extra: test
