Beispiel #1
0
    packages=find_packages(),
    include_package_data=True,
    zip_safe=False,

    setup_requires = build_requires,
    install_requires = build_requires,



    ext_modules = [
      Extension("bob.ip.color.version",
        [
          "bob/ip/color/version.cpp",
        ],
        bob_packages = bob_packages,
        version = version,
        packages = packages,
        boost_modules = boost_modules,
      ),

      Library("bob.ip.color.bob_ip_color",
        [
          "bob/ip/color/cpp/color.cpp",
        ],
        version = version,
        bob_packages = bob_packages,
        packages = packages,
        boost_modules = boost_modules,
      ),
Beispiel #2
0
 description="Core signal processing utilities for Bob",
 url='http://gitlab.idiap.ch/bob/bob.sp',
 license='BSD',
 author='Andre Anjos',
 author_email='*****@*****.**',
 long_description=open('README.rst').read(),
 packages=find_packages(),
 include_package_data=True,
 zip_safe=False,
 setup_requires=build_requires,
 install_requires=build_requires,
 ext_modules=[
     Extension(
         "bob.sp.version",
         [
             "bob/sp/version.cpp",
         ],
         version=version,
         bob_packages=bob_packages,
     ),
     Library(
         'bob.sp.bob_sp',
         [
             "bob/sp/cpp/DCT1DNaive.cpp", "bob/sp/cpp/DCT2D.cpp",
             "bob/sp/cpp/DCT2DNaive.cpp", "bob/sp/cpp/FFT1D.cpp",
             "bob/sp/cpp/FFT2DNaive.cpp", "bob/sp/cpp/DCT1D.cpp",
             "bob/sp/cpp/FFT1DNaive.cpp", "bob/sp/cpp/FFT2D.cpp",
             "bob/sp/cpp/fftpack.c"
         ],
         version=version,
         bob_packages=bob_packages,
     ),
Beispiel #3
0
 packages=find_packages(),
 include_package_data=True,
 zip_safe=False,
 setup_requires=build_requires,
 install_requires=build_requires,
 namespace_packages=[
     "bob",
     "bob.io",
 ],
 ext_modules=[
     Extension(
         "bob.io.base.version",
         [
             "bob/io/base/version.cpp",
         ],
         define_macros=define_macros,
         system_include_dirs=system_include_dirs,
         version=version,
         bob_packages=bob_packages,
         packages=packages,
         boost_modules=boost_modules,
     ),
     Library(
         "bob.io.base.bob_io_base",
         [
             "bob/io/base/cpp/CodecRegistry.cpp",
             "bob/io/base/cpp/CSVFile.cpp",
             "bob/io/base/cpp/File.cpp",
             "bob/io/base/cpp/HDF5ArrayFile.cpp",
             "bob/io/base/cpp/HDF5Attribute.cpp",
             "bob/io/base/cpp/HDF5Dataset.cpp",
             "bob/io/base/cpp/HDF5File.cpp",
Beispiel #4
0
 version=version,
 description='Core utilities required on all Bob modules',
 url='http://gitlab.idiap.ch/bob/bob.core',
 license='BSD',
 author='Andre Anjos',
 author_email='*****@*****.**',
 long_description=open('README.rst').read(),
 packages=find_packages(),
 include_package_data=True,
 zip_safe=False,
 setup_requires=build_requires,
 install_requires=build_requires,
 ext_modules=[
     Extension("bob.core.version", [
         "bob/core/version.cpp",
     ],
               version=version,
               packages=packages,
               boost_modules=['system']),
     Library(
         "bob.core.bob_core",
         [
             "bob/core/cpp/logging.cpp",
         ],
         version=version,
         packages=packages,
         boost_modules=['system', 'iostreams', 'filesystem'],
     ),
     Extension(
         "bob.core._convert",
         [
             "bob/core/convert.cpp",
Beispiel #5
0
    long_description=open('README.rst').read(),

    packages=find_packages(),
    include_package_data=True,
    zip_safe=False,

    setup_requires = build_requires,
    install_requires = build_requires,

    ext_modules = [
      Extension("bob.io.matlab.version",
        [
          "bob/io/matlab/version.cpp",
        ],
        packages = packages,
        boost_modules = boost_modules,
        bob_packages = bob_packages,
        version = version,
      ),

      Extension("bob.io.matlab._library",
        [
          "bob/io/matlab/bobskin.cpp",
          "bob/io/matlab/utils.cpp",
          "bob/io/matlab/file.cpp",
          "bob/io/matlab/main.cpp",
        ],
        packages = packages,
        boost_modules = boost_modules,
        bob_packages = bob_packages,
Beispiel #6
0
 url='http://gitlab.idiap.ch/bob/bob.learn.em',
 license='BSD',
 author='Andre Anjos',
 author_email='*****@*****.**',
 long_description=open('README.rst').read(),
 packages=find_packages(),
 include_package_data=True,
 zip_safe=False,
 setup_requires=build_requires,
 install_requires=build_requires,
 ext_modules=[
     Extension(
         "bob.learn.em.version",
         [
             "bob/learn/em/version.cpp",
         ],
         bob_packages=bob_packages,
         packages=packages,
         boost_modules=boost_modules,
         version=version,
     ),
     Library(
         "bob.learn.em.bob_learn_em",
         [
             "bob/learn/em/cpp/Gaussian.cpp",
             "bob/learn/em/cpp/GMMMachine.cpp",
             "bob/learn/em/cpp/GMMStats.cpp",
             "bob/learn/em/cpp/IVectorMachine.cpp",
             "bob/learn/em/cpp/KMeansMachine.cpp",
             "bob/learn/em/cpp/LinearScoring.cpp",
             "bob/learn/em/cpp/PLDAMachine.cpp",
             "bob/learn/em/cpp/ZTNorm.cpp",
Beispiel #7
0
 url='http://gitlab.idiap.ch/bob/bob.learn.activation',
 license='BSD',
 author='Andre Anjos',
 author_email='*****@*****.**',
 long_description=open('README.rst').read(),
 packages=find_packages(),
 include_package_data=True,
 zip_safe=False,
 setup_requires=build_requires,
 install_requires=build_requires,
 ext_modules=[
     Extension(
         "bob.learn.activation.version",
         [
             "bob/learn/activation/version.cpp",
         ],
         bob_packages=bob_packages,
         version=version,
         packages=packages,
         boost_modules=boost_modules,
     ),
     Library(
         "bob.learn.activation.bob_learn_activation",
         [
             "bob/learn/activation/cpp/ActivationRegistry.cpp",
         ],
         bob_packages=bob_packages,
         version=version,
         packages=packages,
         boost_modules=boost_modules,
     ),
     Extension(
Beispiel #8
0
    # scripts of this package. Don't worry - You won't need administrative
    # privileges when using buildout.
    setup_requires=build_requires,
    install_requires=build_requires,

    # In fact, we are defining two extensions here. In any case, you can define
    # as many extensions as you need. Each of them will be compiled
    # independently into a separate .so file.
    ext_modules=[

        # The first extension defines the version of this package and all C++-dependencies.
        Extension(
            "bob.example.library.version",
            # list of files compiled into this extension
            [
                "bob/example/library/version.cpp",
            ],
            # additional parameters, see Extension documentation
            version=version,
            bob_packages=bob_packages,
        ),
        Library(
            "bob.example.library.bob_example_library",
            # list of pure C/C++ files compiled into this library
            [
                "bob/example/library/cpp/Function.cpp",
            ],
            # additional parameters, see Library documentation
            version=version,
            bob_packages=bob_packages,
        ),
Beispiel #9
0
 url='https://gitlab.idiap.ch/bob/bob.ip.optflow.liu',
 packages=find_packages(),
 include_package_data=True,
 zip_safe=False,
 setup_requires=build_requires,
 install_requires=build_requires,
 entry_points={
     'console_scripts': [
         'bob_of_liu.py = bob.ip.optflow.liu.script.flow:main',
     ],
 },
 ext_modules=[
     Extension(
         "bob.ip.optflow.liu.version",
         [
             "bob/ip/optflow/liu/version.cpp",
         ],
         version=version,
     ),
     Extension(
         "bob.ip.optflow.liu.sor",
         [
             "bob/ip/optflow/liu/sor_based/OpticalFlow.cpp",
             "bob/ip/optflow/liu/sor_based/GaussianPyramid.cpp",
             "bob/ip/optflow/liu/sor_based/Stochastic.cpp",
             "bob/ip/optflow/liu/sor_based/main.cpp",
         ],
         version=version,
     ),
     Extension(
         "bob.ip.optflow.liu.cg",
Beispiel #10
0
    packages=find_packages(),
    include_package_data=True,
    zip_safe=False,

    setup_requires = build_requires,
    install_requires = build_requires,



    ext_modules = [
      Extension("bob.ip.gabor.version",
        [
          "bob/ip/gabor/version.cpp",
        ],
        version = version,
        bob_packages = bob_packages,
        packages = packages,
        boost_modules = boost_modules,
      ),

      Library("bob.ip.gabor.bob_ip_gabor",
        [
          "bob/ip/gabor/cpp/Wavelet.cpp",
          "bob/ip/gabor/cpp/Transform.cpp",
          "bob/ip/gabor/cpp/Jet.cpp",
          "bob/ip/gabor/cpp/Graph.cpp",
          "bob/ip/gabor/cpp/Similarity.cpp",
          "bob/ip/gabor/cpp/JetStatistics.cpp",
        ],
        version = version,
Beispiel #11
0
 license='BSD',
 author='Andre Anjos',
 author_email='*****@*****.**',
 long_description=open('README.rst').read(),
 packages=find_packages(),
 include_package_data=True,
 zip_safe=False,
 setup_requires=build_requires,
 install_requires=build_requires,
 ext_modules=[
     Extension(
         "bob.io.video.version",
         [
             "bob/io/video/version.cpp",
         ],
         packages=packages,
         boost_modules=['system'],
         bob_packages=bob_packages,
         version=version,
         define_macros=define_macros,
     ),
     Extension(
         "bob.io.video._library",
         [
             "bob/io/video/cpp/utils.cpp",
             "bob/io/video/cpp/reader.cpp",
             "bob/io/video/cpp/writer.cpp",
             "bob/io/video/bobskin.cpp",
             "bob/io/video/reader.cpp",
             "bob/io/video/writer.cpp",
             "bob/io/video/file.cpp",
Beispiel #12
0
 author='Andre Anjos',
 author_email='*****@*****.**',
 long_description=open('README.rst').read(),
 packages=find_packages(),
 include_package_data=True,
 zip_safe=False,
 setup_requires=build_requires,
 install_requires=build_requires,
 ext_modules=[
     Extension(
         "bob.io.image.version",
         [
             "bob/io/image/version.cpp",
         ],
         packages=packages,
         boost_modules=boost_modules,
         bob_packages=bob_packages,
         version=version,
         system_include_dirs=system_include_dirs,
         library_dirs=library_dirs,
         libraries=libraries,
         define_macros=define_macros,
     ),
     Library(
         "bob.io.image.bob_io_image",
         [
             "bob/io/image/cpp/tiff.cpp",
             "bob/io/image/cpp/gif.cpp",
             "bob/io/image/cpp/png.cpp",
             "bob/io/image/cpp/jpeg.cpp",
             "bob/io/image/cpp/bmp.cpp",
             "bob/io/image/cpp/pnmio.cpp",
Beispiel #13
0
    packages=find_packages(),
    include_package_data=True,
    zip_safe=False,

    setup_requires = build_requires,
    install_requires = build_requires,



    ext_modules = [
      Extension("bob.learn.libsvm.version",
        [
          "bob/learn/libsvm/version.cpp",
        ],
        bob_packages = bob_packages,
        version = version,
        system_include_dirs = system_include_dirs,
        define_macros = define_macros,
        library_dirs = library_dirs,
        libraries = libraries,
      ),

      Library("bob.learn.libsvm.bob_learn_libsvm",
        [
          "bob/learn/libsvm/cpp/file.cpp",
          "bob/learn/libsvm/cpp/machine.cpp",
          "bob/learn/libsvm/cpp/trainer.cpp",
        ],
        bob_packages = bob_packages,
        version = version,
        system_include_dirs = system_include_dirs,
Beispiel #14
0
    # This line defines which packages should be installed when you "install"
    # this package. All packages that are mentioned here, but are not installed
    # on the current system will be installed locally and only visible to the
    # scripts of this package. Don't worry - You won't need adminstrative
    # privileges when using buildout.
    setup_requires=build_requires,
    install_requires=build_requires,
    cmdclass={
        'build_ext': build_ext,
    },
    ext_modules=[
        Extension(
            "bob.ip.facedetect.version",
            [
                "bob/ip/facedetect/version.cpp",
            ],
            version=version,
            bob_packages=bob_packages,
        ),
        Extension(
            'bob.ip.facedetect._library',
            [
                "bob/ip/facedetect/cpp/features.cpp",
                "bob/ip/facedetect/cpp/boundingbox.cpp",
                "bob/ip/facedetect/bounding_box.cpp",
                "bob/ip/facedetect/feature_extractor.cpp",
                "bob/ip/facedetect/main.cpp",
            ],
            version=version,
            bob_packages=bob_packages,
        )
 url='http://github.com/bioidiap/bob.ip.base',
 license='BSD',
 author='Andre Anjos',
 author_email='*****@*****.**',
 long_description=open('README.rst').read(),
 packages=find_packages(),
 include_package_data=True,
 zip_safe=False,
 setup_requires=build_requires,
 install_requires=build_requires,
 ext_modules=[
     Extension(
         "bob.ip.base.version",
         [
             "bob/ip/base/version.cpp",
         ],
         bob_packages=bob_packages,
         packages=packages,
         boost_modules=boost_modules,
         version=version,
     ),
     Library(
         "bob.ip.base.bob_ip_base",
         [
             "bob/ip/base/cpp/GeomNorm.cpp",
             "bob/ip/base/cpp/FaceEyesNorm.cpp",
             "bob/ip/base/cpp/Affine.cpp",
             "bob/ip/base/cpp/LBP.cpp",
             "bob/ip/base/cpp/LBPTop.cpp",
             "bob/ip/base/cpp/DCTFeatures.cpp",
             "bob/ip/base/cpp/TanTriggs.cpp",
             "bob/ip/base/cpp/Gaussian.cpp",
Beispiel #16
0
 license="GPLv3",
 author='Andre Anjos',
 author_email='*****@*****.**',
 long_description=open('README.rst').read(),
 url='https://github.com/bioidiap/bob.ip.flandmark',
 packages=find_packages(),
 include_package_data=True,
 zip_safe=False,
 setup_requires=build_requires,
 install_requires=build_requires,
 ext_modules=[
     Extension(
         "bob.ip.flandmark.version",
         [
             "bob/ip/flandmark/version.cpp",
         ],
         bob_packages=bob_packages,
         version=version,
         packages=packages,
         boost_modules=boost_modules,
     ),
     Extension(
         "bob.ip.flandmark._library",
         [
             "bob/ip/flandmark/cpp/flandmark_detector.cpp",
             "bob/ip/flandmark/cpp/liblbp.cpp",
             "bob/ip/flandmark/flandmark.cpp",
             "bob/ip/flandmark/main.cpp",
         ],
         bob_packages=bob_packages,
         version=version,
         packages=packages,
Beispiel #17
0
 url='http://gitlab.idiap.ch/bob/bob.learn.mlp',
 license='BSD',
 author='Andre Anjos',
 author_email='*****@*****.**',
 long_description=open('README.rst').read(),
 packages=find_packages(),
 include_package_data=True,
 zip_safe=False,
 setup_requires=build_requires,
 install_requires=build_requires,
 ext_modules=[
     Extension(
         "bob.learn.mlp.version",
         [
             "bob/learn/mlp/version.cpp",
         ],
         bob_packages=bob_packages,
         version=version,
         packages=packages,
         boost_modules=boost_modules,
     ),
     Library(
         "bob.learn.mlp.bob_learn_mlp",
         [
             "bob/learn/mlp/cxx/roll.cpp",
             "bob/learn/mlp/cxx/machine.cpp",
             "bob/learn/mlp/cxx/cross_entropy.cpp",
             "bob/learn/mlp/cxx/square_error.cpp",
             "bob/learn/mlp/cxx/shuffler.cpp",
             "bob/learn/mlp/cxx/trainer.cpp",
             "bob/learn/mlp/cxx/backprop.cpp",
             "bob/learn/mlp/cxx/rprop.cpp",
 description="Optical Flow framework based on Horn & Schunck",
 license="BSD",
 author='Andre Anjos',
 author_email='*****@*****.**',
 long_description=open('README.rst').read(),
 url='https://gitlab.idiap.ch/bob/bob.ip.optflow.hornschunck',
 packages=find_packages(),
 include_package_data=True,
 zip_safe=False,
 setup_requires=build_requires,
 install_requires=build_requires,
 ext_modules=[
     Extension(
         "bob.ip.optflow.hornschunck.version",
         [
             "bob/ip/optflow/hornschunck/version.cpp",
         ],
         bob_packages=bob_packages,
         version=version,
     ),
     Extension(
         "bob.ip.optflow.hornschunck._library",
         [
             "bob/ip/optflow/hornschunck/SpatioTemporalGradient.cpp",
             "bob/ip/optflow/hornschunck/HornAndSchunckFlow.cpp",
             "bob/ip/optflow/hornschunck/forward.cpp",
             "bob/ip/optflow/hornschunck/central.cpp",
             "bob/ip/optflow/hornschunck/vanilla.cpp",
             "bob/ip/optflow/hornschunck/flow.cpp",
             "bob/ip/optflow/hornschunck/main.cpp",
         ],
         bob_packages=bob_packages,
Beispiel #19
0
 license='BSD',
 author='Manuel Guenther (with help of Rakesh Mehta)',
 author_email='*****@*****.**',
 long_description=open('README.rst').read(),
 packages=find_packages(),
 include_package_data=True,
 zip_safe=False,
 setup_requires=build_requires,
 install_requires=build_requires,
 ext_modules=[
     Extension(
         "bob.learn.boosting.version",
         [
             "bob/learn/boosting/version.cpp",
         ],
         bob_packages=bob_packages,
         version=version,
         packages=packages,
         boost_modules=boost_modules,
         include_dirs=[include_dir],
     ),
     Extension(
         'bob.learn.boosting._library',
         [
             "bob/learn/boosting/main.cpp",
             "bob/learn/boosting/loss_function.cpp",
             "bob/learn/boosting/jesorsky_loss.cpp",
             "bob/learn/boosting/weak_machine.cpp",
             "bob/learn/boosting/stump_machine.cpp",
             "bob/learn/boosting/lut_machine.cpp",
             "bob/learn/boosting/boosted_machine.cpp",
Beispiel #20
0
 url='http://gitlab.idiap.ch/bob/bob.learn.linear',
 license='BSD',
 author='Andre Anjos',
 author_email='*****@*****.**',
 long_description=open('README.rst').read(),
 packages=find_packages(),
 include_package_data=True,
 zip_safe=False,
 setup_requires=build_requires,
 install_requires=build_requires,
 ext_modules=[
     Extension(
         "bob.learn.linear.version",
         [
             "bob/learn/linear/version.cpp",
         ],
         bob_packages=bob_packages,
         version=version,
         packages=packages,
         boost_modules=boost_modules,
     ),
     Library(
         "bob.learn.linear.bob_learn_linear",
         [
             "bob/learn/linear/cpp/machine.cpp",
             "bob/learn/linear/cpp/pca.cpp",
             "bob/learn/linear/cpp/lda.cpp",
             "bob/learn/linear/cpp/logreg.cpp",
             "bob/learn/linear/cpp/whitening.cpp",
             "bob/learn/linear/cpp/wccn.cpp",
             "bob/learn/linear/cpp/bic.cpp",
         ],
Beispiel #21
0
    author_email='*****@*****.**',

    long_description=open('README.rst').read(),

    packages=find_packages(),
    include_package_data=True,
    zip_safe=False,

    setup_requires = build_requires,
    install_requires = build_requires,

    ext_modules = [
      Extension("bob.ap.version",
        [
          "bob/ap/version.cpp",
        ],
        version = version,
        bob_packages = bob_packages,
      ),

      Library("bob.ap.bob_ap",
        [
          "bob/ap/cpp/Energy.cpp",
          "bob/ap/cpp/FrameExtractor.cpp",
          "bob/ap/cpp/Spectrogram.cpp",
          "bob/ap/cpp/Ceps.cpp",
        ],
        version = version,
        bob_packages = bob_packages,
      ),