README.rst 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 ipfml
  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. - **utils** : *All utils functions developed for the package*
  23. - **exceptions** : *All customized exceptions*
  24. All these modules will be enhanced during development of the package.
  25. Documentation
  26. -------------
  27. For more information about package, documentation_ is available.
  28. .. _documentation: https://jbuisine.github.io/IPFML/
  29. Contribution
  30. ------------
  31. Please refer to the guidelines_ file if you want to contribute!
  32. .. _guidelines: https://github.com/jbuisine/IPFML/blob/master/CONTRIBUTION.md