README.rst 1.2 KB

123456789101112131415161718192021222324252627
  1. # IPFML
  2. Image Processing For Machine Learning package.
  3. ## Modules
  4. This project contains modules.
  5. ### **img_processing** : *PIL image processing part*
  6. - fig2data(fig): *Convert a Matplotlib figure to a 3D numpy array with RGB channels and return it*
  7. - fig2img(fig): *Convert a Matplotlib figure to a PIL Image in RGB format and return it*
  8. ### **metrics** : *Metrics computation of PIL image*
  9. - get_SVD(image): *Transforms PIL Image into SVD*
  10. - get_SVD_s(image): *Transforms PIL Image into SVD and returns only 's' part*
  11. - get_SVD_U(image): *Transforms PIL Image into SVD and returns only 'U' part*
  12. - get_SVD_V(image): *Transforms PIL Image into SVD and returns only 'V' part*
  13. ### **ts_model_helper** : *contains helpful function to save or display model information and performance of tensorflow model*
  14. - save(history, filename): *Function which saves data from neural network model*
  15. - show(history, filename): *Function which shows data from neural network model*
  16. All these modules will be enhanced during development of the project
  17. ## How to contribute
  18. This git project uses [git-flow](https://danielkummer.github.io/git-flow-cheatsheet/) implementation. You are free to contribute to it.