27 lines
479 B
Python
27 lines
479 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
# \file test.py
|
|
# \brief TODO
|
|
# \author Florent Guiotte <florent.guiotte@gmail.com>
|
|
# \version 0.1
|
|
# \date 03 avril 2018
|
|
#
|
|
# TODO details
|
|
|
|
from core import Input, Output, Filter
|
|
from LoadTIFF import LoadTIFF
|
|
from AttributeProfiles import AttributeProfiles as APs
|
|
|
|
def main():
|
|
i = LoadTIFF(['../Data/test.tiff'])
|
|
ap = APs()
|
|
o = Output('o')
|
|
|
|
ap.input = i
|
|
o.input = i
|
|
|
|
o.run()
|
|
|
|
if __name__ == '__main__':
|
|
main()
|