README.rst 789 B

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