|
import subprocess |
|
import csv |
|
import json |
|
from PIL import Image |
|
import os |
|
import pandas as pd |
|
|
|
def check_image(image_id, image_directory): |
|
""" |
|
Check if an image with a given ID is properly downloaded. |
|
:param image_id: The ID of the image. |
|
:param image_directory: Directory where the image is stored. |
|
:return: True if the image is downloaded and valid, False otherwise. |
|
""" |
|
|
|
file_path = os.path.join(image_directory, f"{image_id}.jpg") |
|
|
|
|
|
if not os.path.exists(file_path): |
|
print(f"Image {image_id} not found.") |
|
return False |
|
|
|
|
|
try: |
|
with Image.open(file_path) as img: |
|
img.verify() |
|
|
|
return True |
|
except (IOError, SyntaxError) as e: |
|
print(f"Image {image_id} is corrupted: {e}") |
|
return False |
|
|
|
subprocess.run(['bash', 'download_img.sh']) |
|
|
|
csv_file_name = "youtube_new.csv" |
|
json_file_name = "youtube_new.json" |
|
json_structure = { |
|
"dataset_type": "test", |
|
"dataset_name": "youtube", |
|
"dataset_version": "0.0.2", |
|
"data": [] |
|
} |
|
|
|
check_df = pd.read_csv(csv_file_name) |
|
check_df_cleaned = check_df.drop_duplicates(subset=['video_id']) |
|
print(f"Creating {check_df.shape[0]} questions {check_df_cleaned.shape[0]} unique images...") |
|
|
|
with open(csv_file_name, 'r') as csv_file: |
|
csv_reader = csv.DictReader(csv_file) |
|
for row in csv_reader: |
|
if check_image(row['video_id'], 'images_new'): |
|
row['video_classes'] = row['video_classes'].split(',') |
|
row['answers'] = row['answers'].split(',') |
|
json_structure["data"].append(row) |
|
else: |
|
pass |
|
with open(json_file_name, 'w') as json_file: |
|
json.dump(json_structure, json_file, indent=4) |
|
|