Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# USAGE
# python build_covid_dataset.py --covid covid-chestxray-dataset --output dataset/covid
# import the necessary packages
import pandas as pd
import argparse
import shutil
import os
# construct the argument parser and parse the arguments
ap = argparse.ArgumentParser()
ap.add_argument("-c", "--covid", required=True,
help="path to base directory for COVID-19 dataset")
ap.add_argument("-n", "--normal", required=True,
help="path to directory where 'normal' images will be stored")
args = vars(ap.parse_args())
# construct the path to the metadata CSV file and load it
csvPath = os.path.sep.join([args["covid"], "metadata.csv"])
df = pd.read_csv(csvPath)
# loop over the rows of the COVID-19 data frame
for (i, row) in df.iterrows():
# if (1) the current case is not COVID-19 or (2) this is not
# a 'PA' view, then ignore the row
if row["finding"] != "COVID-19" or row["view"] != "PA":
continue
# build the path to the input image file
imagePath = os.path.sep.join([args["covid"], "images",
row["filename"]])
# if the input image file does not exist (there are some errors in
# the COVID-19 metadeta file), ignore the row
if not os.path.exists(imagePath):
continue
# extract the filename from the image path and then construct the
# path to the copied image file
filename = row["filename"].split(os.path.sep)[-1]
outputPath = os.path.sep.join([args["normal"], filename])
# copy the image
shutil.copy2(imagePath, outputPath)