Dlib gathering points with glob

63 views Asked by At

I am new in python and nowadays I am trying work with gathering coordinates of points with dlib C++ library. But I cannot understand this code. Please help me

for f in glob.glob(os.path.join(faces_folder_path, "*.JPG")):
    fh = open(f + ".txt","w")

    print("Processing file: {}".format(f))
    img = io.imread(f)
0

There are 0 answers