Initial commit

This commit is contained in:
2026-03-12 14:21:16 +02:00
parent bfc4f78e24
commit de6cd1988e
5 changed files with 168 additions and 0 deletions

14
src/ploc/ploc_app.py Normal file
View File

@@ -0,0 +1,14 @@
import argparse
from ploc.io.image import Image
def main():
parser = argparse.ArgumentParser()
parser.add_argument("image", type=str, help="Image file to process")
args = parser.parse_args()
print("Hello World")
if __name__ == "__main__":
main()