Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 470 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 470 Bytes

FOTO.py

Fourier Transform Textural Ordination in Python

Deprecration warning : This project is no longer maintained, please use the more powerfull fototex package.

Usage

from FOTO import FOTO

if __name__ == '__main__': #guard needed to make the client multiprocess safe

  foto = FOTO(inPath, blockSize=64, method='BLOCK', maxSample=29, normalize=True)
  foto.run()
  foto.writeRGB(outPath)
  foto.plotPCA()