Update script
This commit is contained in:
+3
-2
@@ -5,10 +5,11 @@ from os import listdir
|
|||||||
from os.path import isfile, join
|
from os.path import isfile, join
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
import argparse
|
import argparse
|
||||||
|
import numpy
|
||||||
|
|
||||||
# Argument parsing variable declared
|
# Argument parsing variable declared
|
||||||
ap = argparse.ArgumentParser()
|
ap = argparse.ArgumentParser()
|
||||||
|
|
||||||
ap.add_argument("-i", "--image",
|
ap.add_argument("-i", "--image",
|
||||||
required=True,
|
required=True,
|
||||||
help="Path to folder")
|
help="Path to folder")
|
||||||
@@ -16,7 +17,7 @@ ap.add_argument("-i", "--image",
|
|||||||
args = vars(ap.parse_args())
|
args = vars(ap.parse_args())
|
||||||
|
|
||||||
# Find all the images in the provided images folder
|
# Find all the images in the provided images folder
|
||||||
mypath = args["D:\TOL"]
|
mypath = args["image"]
|
||||||
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
|
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
|
||||||
images = numpy.empty(len(onlyfiles), dtype=object)
|
images = numpy.empty(len(onlyfiles), dtype=object)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user