Skip to content
#

camvid

Here are 13 public repositories matching this topic...

Lightweight models for real-time semantic segmentationon PyTorch (include SQNet, LinkNet, SegNet, UNet, ENet, ERFNet, EDANet, ESPNet, ESPNetv2, LEDNet, ESNet, FSSNet, CGNet, DABNet, Fast-SCNN, ContextNet, FPENet, etc.)

  • Updated May 10, 2020
  • Python
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 camvid 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 camvid topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.