Skip to content
#

fcn

Here are 142 public repositories matching this topic...

johngrabner
johngrabner commented Feb 8, 2020
def read_images(img_dir):
   ...
   file_list = [f for f in os.listdir(img_dir) if os.path.isfile(os.path.join(img_dir, f))]
   frames_list = [file for file in file_list if ('_L' not in file) and ('txt' not in file)]
   masks_list = [file for file in file_list if ('_L' in file) and ('txt' not in file)]

adding

for i in range(10):
        print(f"{frames_list[i]} and {ma

Improve this page

Add a description, image, and links to the fcn topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the fcn topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.