README.rst 846 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. Image Processing For Machine Learning
  2. =====================================
  3. This is a package developed during a thesis project.
  4. Installation
  5. ------------
  6. .. code:: bash
  7. pip install ifpml
  8. How to use ?
  9. ------------
  10. To use, simply do :
  11. .. code:: python
  12. from PIL import Image
  13. from ipfml import processing
  14. img = Image.open('path/to/image.png')
  15. s = processing.get_LAB_L_SVD_s(img)
  16. Modules
  17. -------
  18. This project contains modules.
  19. - **processing** : *Image processing of images*
  20. - **metrics** : *Metrics computation of PIL or 2D, 3D numpy images*
  21. - **filters** : *Filters implemented such as noise filters*
  22. All these modules will be enhanced during development of the package.
  23. Documentation
  24. -------------
  25. For more information about package, documentation_ is available.
  26. .. _documentation: https://jbuisine.github.io/IPFML/