|
1 | | -Metadata-Version: 1.2 |
2 | | -Name: PyAFBF |
3 | | -Version: 0.0.3 |
4 | | -Summary: Sample image textures from anisotropic fractional Brownian fields |
5 | | -Home-page: https://github.com/fjprichard/PyAFBF/ |
6 | | -Author: Frederic Richard |
7 | | -Author-email: frederic.richard@univ-amu.fr |
8 | | -License: GPLv3 |
9 | | -Project-URL: Documentation, https://fjprichard.github.io/PyAFBF/ |
10 | | -Project-URL: Source, https://github.com/fjprichard/PyAFBF/ |
11 | | -Project-URL: Tracker, https://github.com/fjprichard/PyAFBF/issues |
12 | | -Description: The Package PyAFBF is intended for the simulation of rough anisotropic image textures. Textures are sampled from a mathematical model called the anisotropic fractional Brownian field. More details can be found on the `documentation <https://fjprichard.github.io/PyAFBF/>`_. |
13 | | - |
14 | | - Package features |
15 | | - ================ |
16 | | - |
17 | | - - Simulation of rough anisotropic textures, |
18 | | - |
19 | | - - Computation of field features (semi-variogram, regularity, anisotropy indices) that can serve as texture attributes, |
20 | | - |
21 | | - - Random definition of simulated fields, |
22 | | - |
23 | | - - Extensions to related fields (deformed fields, intrinsic fields, heterogeneous fields, binary patterns). |
24 | | - |
25 | | - |
26 | | - Installation from sources |
27 | | - ========================= |
28 | | - |
29 | | - The package source can be downloaded from the `repository <https://github.com/fjprichard/PyAFBF>`_. |
30 | | - |
31 | | - To install the package, write the following commands in the root directory where the package was downloaded: |
32 | | - |
33 | | - python setup.py install |
34 | | - or |
35 | | - pip install -e . |
36 | | - |
37 | | - After installation, the package can be tested by running |
38 | | - |
39 | | - python tests/TestAll.py |
40 | | - |
41 | | - If no output appears, then the package is correctly installed. |
42 | | - |
43 | | - Communication to the author |
44 | | - =========================== |
45 | | - |
46 | | - PyAFBF is developed and maintained by Frédéric Richard. For feed-back, contributions, bug reports, contact directly the `author <https://github.com/fjprichard>`_, or use the `discussion <https://github.com/fjprichard/PyAFBF/discussions>`_ facility. |
47 | | - |
48 | | - |
49 | | - Licence |
50 | | - ======= |
51 | | - |
52 | | - PyAFBF is under licence GNU GPL, version 3. |
53 | | - |
54 | | - |
55 | | - Credits |
56 | | - ======= |
57 | | - |
58 | | - PyAFBF is written and maintained by Frederic Richard, Professor at Aix-Marseille University, France. |
59 | | - |
60 | | - |
61 | | - |
62 | | -Keywords: simulation,anisotropic fractional Brownian field,image texture |
63 | | -Platform: Linux |
64 | | -Platform: MacOSX |
65 | | -Platform: Windows |
66 | | -Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3) |
67 | | -Classifier: Development Status :: 5 - Production/Stable |
68 | | -Classifier: Intended Audience :: Science/Research |
69 | | -Classifier: Intended Audience :: End Users/Desktop |
70 | | -Classifier: Intended Audience :: Developers |
71 | | -Classifier: Natural Language :: English |
72 | | -Classifier: Operating System :: OS Independent |
73 | | -Classifier: Programming Language :: Python :: 3.8 |
74 | | -Classifier: Topic :: Scientific/Engineering :: Image Processing |
| 1 | +Metadata-Version: 2.1 |
| 2 | +Name: PyAFBF |
| 3 | +Version: 0.2.0 |
| 4 | +Summary: Sample image textures from anisotropic fractional Brownian fields |
| 5 | +Home-page: https://github.com/fjprichard/PyAFBF/ |
| 6 | +Author: Frederic Richard |
| 7 | +Author-email: frederic.richard@univ-amu.fr |
| 8 | +License: GPLv3 |
| 9 | +Project-URL: Documentation, https://fjprichard.github.io/PyAFBF/ |
| 10 | +Project-URL: Source, https://github.com/fjprichard/PyAFBF/ |
| 11 | +Project-URL: Tracker, https://github.com/fjprichard/PyAFBF/issues |
| 12 | +Description: .. image:: https://zenodo.org/badge/368267301.svg |
| 13 | + :target: https://zenodo.org/badge/latestdoi/368267301 |
| 14 | + |
| 15 | + The Package PyAFBF is intended for the simulation of rough anisotropic image textures. Textures are sampled from a mathematical model called the anisotropic fractional Brownian field. More details can be found on the `documentation <https://fjprichard.github.io/PyAFBF/>`_. |
| 16 | + |
| 17 | + Package features |
| 18 | + ================ |
| 19 | + |
| 20 | + - Simulation of rough anisotropic textures, |
| 21 | + |
| 22 | + - Computation of field features (semi-variogram, regularity, anisotropy indices) that can serve as texture attributes, |
| 23 | + |
| 24 | + - Random definition of simulated fields, |
| 25 | + |
| 26 | + - Extensions to related fields (deformed fields, intrinsic fields, heterogeneous fields, binary patterns). |
| 27 | + |
| 28 | + |
| 29 | + Installation from sources |
| 30 | + ========================= |
| 31 | + |
| 32 | + The package source can be downloaded from the `repository <https://github.com/fjprichard/PyAFBF>`_. |
| 33 | + |
| 34 | + The package can be installed through PYPI with |
| 35 | + |
| 36 | + pip install PyAFBF |
| 37 | + |
| 38 | + To install the package in a Google Collab environment, please type |
| 39 | + |
| 40 | + !pip install imgaug==0.2.6 |
| 41 | + |
| 42 | + !pip install PyAFBF |
| 43 | + |
| 44 | + Communication to the author |
| 45 | + =========================== |
| 46 | + |
| 47 | + PyAFBF is developed and maintained by Frédéric Richard. For feed-back, contributions, bug reports, contact directly the `author <https://github.com/fjprichard>`_, or use the `discussion <https://github.com/fjprichard/PyAFBF/discussions>`_ facility. |
| 48 | + |
| 49 | + |
| 50 | + Licence |
| 51 | + ======= |
| 52 | + |
| 53 | + PyAFBF is under licence GNU GPL, version 3. |
| 54 | + |
| 55 | + |
| 56 | + Citation |
| 57 | + ======== |
| 58 | + |
| 59 | + When using PyAFBF, please cite the original paper |
| 60 | + |
| 61 | + H. Biermé, M. Moisan, and F. Richard. A turning-band method for the simulation of anisotropic fractional Brownian field. J. Comput. Graph. Statist., 24(3):885–904, 2015. |
| 62 | + |
| 63 | + and the JOSS paper: |
| 64 | + |
| 65 | + |
| 66 | + .. image:: https://joss.theoj.org/papers/10.21105/joss.03821/status.svg |
| 67 | + :target: https://doi.org/10.21105/joss.03821 |
| 68 | + |
| 69 | + |
| 70 | + Contents |
| 71 | + ======== |
| 72 | + |
| 73 | + - Quick start guide |
| 74 | + - Getting started |
| 75 | + - Customed models |
| 76 | + - Tuning model parameters |
| 77 | + - Model features |
| 78 | + - Simulating with turning-band fields |
| 79 | + - Example gallery |
| 80 | + - Basic examples |
| 81 | + - Extended anisotropic fields |
| 82 | + - Heterogeneous fields |
| 83 | + - Related anisotropic fields |
| 84 | + - API: main classes |
| 85 | + - AFBF (field) |
| 86 | + - Turning band field (tbfield) |
| 87 | + - API: auxiliary classes |
| 88 | + - Periodic functions (perfunction) |
| 89 | + - Coordinates (coordinates) |
| 90 | + - Spatial data (sdata) |
| 91 | + - Process (process) |
| 92 | + - Turning bands (tbparameters) |
| 93 | + - ndarray |
| 94 | + |
| 95 | + |
| 96 | + |
| 97 | + Credits |
| 98 | + ======= |
| 99 | + |
| 100 | + PyAFBF is written and maintained by Frederic Richard, Professor at Aix-Marseille University, France. |
| 101 | + |
| 102 | + |
| 103 | + |
| 104 | +Keywords: anisotropic fractional Brownian field,image texture,simulation |
| 105 | +Platform: Linux |
| 106 | +Platform: MacOSX |
| 107 | +Platform: Windows |
| 108 | +Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3) |
| 109 | +Classifier: Development Status :: 5 - Production/Stable |
| 110 | +Classifier: Intended Audience :: Science/Research |
| 111 | +Classifier: Intended Audience :: End Users/Desktop |
| 112 | +Classifier: Intended Audience :: Developers |
| 113 | +Classifier: Natural Language :: English |
| 114 | +Classifier: Operating System :: OS Independent |
| 115 | +Classifier: Programming Language :: Python :: 3.8 |
| 116 | +Classifier: Topic :: Scientific/Engineering :: Image Processing |
| 117 | +Provides-Extra: dev |
0 commit comments