Metadata-Version: 1.0
Name: pyccv
Version: 0.06
Summary: Calculate color coherence vector for similar image search
Home-page: http://www.bitbucket.org/aihara/pyccv
Author: Shunsuke Aihara
Author-email: s.aihara@gmail.com
License: MIT License
Description: pyccv
        by Shunsuke Aihara - http://argmax.jp
        
        Calculate color coherence vector for similar image search
        
        date:
            February 2012
        
        description:
            Calculate color coherence vector for similar image search
        
        require::
        
            python2.6 or later
            numpy
            PIL
            python-opencv2.2 or later
        
        install::
        
            % python setup.py build
            % python setup.py install
        
        usage::
        
            >>> import Image
            >>> import pyccv
            >>> img = Image.open('/path/to/image')
            >>> size = 240 # Normalize image size
            >>> threshold = 25
            >>> ccv = pyccv.calc_ccv(img,size,threshold)
            >>> print ccv.shape # 128
            >>> print ccv
Keywords: image-processing computer-vision
Platform: UNKNOWN
