| import os |
| import json |
| import numpy as np |
| import logging |
| import subprocess |
| import torch |
| import re |
| from pathlib import Path |
| from PIL import Image, ImageSequence |
| |
| from torchvision import transforms |
| from torchvision.transforms import Compose, Resize, CenterCrop, ToTensor, Normalize, ToPILImage |
| try: |
| from torchvision.transforms import InterpolationMode |
| BICUBIC = InterpolationMode.BICUBIC |
| BILINEAR = InterpolationMode.BILINEAR |
| except ImportError: |
| BICUBIC = Image.BICUBIC |
| BILINEAR = Image.BILINEAR |
|
|
| CACHE_DIR = os.environ.get('EDITBOARD_CACHE_DIR') |
| if CACHE_DIR is None: |
| CACHE_DIR = os.path.join(os.path.expanduser('~'), '.cache', 'editboard') |
|
|
| logging.basicConfig(level = logging.INFO,format = '%(asctime)s - %(name)s - %(levelname)s - %(message)s') |
| logger = logging.getLogger(__name__) |
|
|
| def clip_transform(n_px): |
| return Compose([ |
| Resize(n_px, interpolation=BICUBIC, antialias=False), |
| CenterCrop(n_px), |
| transforms.Lambda(lambda x: x.float().div(255.0)), |
| Normalize((0.48145466, 0.4578275, 0.40821073), (0.26862954, 0.26130258, 0.27577711)), |
| ]) |
|
|
| def clip_transform_Image(n_px): |
| return Compose([ |
| Resize(n_px, interpolation=BICUBIC, antialias=False), |
| CenterCrop(n_px), |
| ToTensor(), |
| Normalize((0.48145466, 0.4578275, 0.40821073), (0.26862954, 0.26130258, 0.27577711)), |
| ]) |
|
|
| def dino_transform(n_px): |
| return Compose([ |
| Resize(size=n_px, antialias=False), |
| transforms.Lambda(lambda x: x.float().div(255.0)), |
| Normalize((0.485, 0.456, 0.406), (0.229, 0.224, 0.225)) |
| ]) |
|
|
| def dino_transform_Image(n_px): |
| return Compose([ |
| Resize(size=n_px, antialias=False), |
| ToTensor(), |
| Normalize((0.485, 0.456, 0.406), (0.229, 0.224, 0.225)) |
| ]) |
|
|
| def tag2text_transform(n_px): |
| normalize = Normalize(mean=[0.485, 0.456, 0.406], |
| std=[0.229, 0.224, 0.225]) |
| return Compose([ToPILImage(),Resize((n_px, n_px), antialias=False),ToTensor(),normalize]) |
|
|
| def get_frame_indices(num_frames, vlen, sample='rand', fix_start=None, input_fps=1, max_num_frames=-1): |
| if sample in ["rand", "middle"]: |
| acc_samples = min(num_frames, vlen) |
| |
| intervals = np.linspace(start=0, stop=vlen, num=acc_samples + 1).astype(int) |
| ranges = [] |
| for idx, interv in enumerate(intervals[:-1]): |
| ranges.append((interv, intervals[idx + 1] - 1)) |
| if sample == 'rand': |
| try: |
| frame_indices = [random.choice(range(x[0], x[1])) for x in ranges] |
| except: |
| frame_indices = np.random.permutation(vlen)[:acc_samples] |
| frame_indices.sort() |
| frame_indices = list(frame_indices) |
| elif fix_start is not None: |
| frame_indices = [x[0] + fix_start for x in ranges] |
| elif sample == 'middle': |
| frame_indices = [(x[0] + x[1]) // 2 for x in ranges] |
| else: |
| raise NotImplementedError |
|
|
| if len(frame_indices) < num_frames: |
| padded_frame_indices = [frame_indices[-1]] * num_frames |
| padded_frame_indices[:len(frame_indices)] = frame_indices |
| frame_indices = padded_frame_indices |
| elif "fps" in sample: |
| output_fps = float(sample[3:]) |
| duration = float(vlen) / input_fps |
| delta = 1 / output_fps |
| frame_seconds = np.arange(0 + delta / 2, duration + delta / 2, delta) |
| frame_indices = np.around(frame_seconds * input_fps).astype(int) |
| frame_indices = [e for e in frame_indices if e < vlen] |
| if max_num_frames > 0 and len(frame_indices) > max_num_frames: |
| frame_indices = frame_indices[:max_num_frames] |
| |
| else: |
| raise ValueError |
| return frame_indices |
|
|
| def load_video(video_path, data_transform=None, num_frames=None, return_tensor=True, width=None, height=None): |
| """ |
| Load a video from a given path and apply optional data transformations. |
| |
| The function supports loading video in GIF (.gif), PNG (.png), and MP4 (.mp4) formats. |
| Depending on the format, it processes and extracts frames accordingly. |
| |
| Parameters: |
| - video_path (str): The file path to the video or image to be loaded. |
| - data_transform (callable, optional): A function that applies transformations to the video data. |
| |
| Returns: |
| - frames (torch.Tensor): A tensor containing the video frames with shape (T, C, H, W), |
| where T is the number of frames, C is the number of channels, H is the height, and W is the width. |
| |
| Raises: |
| - NotImplementedError: If the video format is not supported. |
| |
| The function first determines the format of the video file by its extension. |
| For GIFs, it iterates over each frame and converts them to RGB. |
| For PNGs, it reads the single frame, converts it to RGB. |
| For MP4s, it reads the frames using the VideoReader class and converts them to NumPy arrays. |
| If a data_transform is provided, it is applied to the buffer before converting it to a tensor. |
| Finally, the tensor is permuted to match the expected (T, C, H, W) format. |
| """ |
| if video_path.endswith('.gif'): |
| frame_ls = [] |
| img = Image.open(video_path) |
| for frame in ImageSequence.Iterator(img): |
| frame = frame.convert('RGB') |
| frame = np.array(frame).astype(np.uint8) |
| frame_ls.append(frame) |
| buffer = np.array(frame_ls).astype(np.uint8) |
| elif video_path.endswith('.png'): |
| frame = Image.open(video_path) |
| frame = frame.convert('RGB') |
| frame = np.array(frame).astype(np.uint8) |
| frame_ls = [frame] |
| buffer = np.array(frame_ls) |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| else: |
| raise NotImplementedError |
| |
| frames = buffer |
| if num_frames and not video_path.endswith('.mp4'): |
| frame_indices = get_frame_indices( |
| num_frames, len(frames), sample="middle" |
| ) |
| frames = frames[frame_indices] |
| |
| if data_transform: |
| frames = data_transform(frames) |
| elif return_tensor: |
| frames = torch.Tensor(frames) |
| frames = frames.permute(0, 3, 1, 2) |
|
|
| return frames |
| |
| def load_dimension_info(json_dir, dimension): |
| """ |
| Load video list and prompt information based on a specified dimension and language from a JSON file. |
| |
| Parameters: |
| - json_dir (str): The directory path where the JSON file is located. |
| - dimension (str): The dimension for evaluation to filter the video prompts. |
| |
| Returns: |
| - video_list (list): A list of video file paths that match the specified dimension. |
| - prompt_dict_ls (list): A list of dictionaries, each containing a prompt and its corresponding video list. |
| |
| The function reads the JSON file to extract video information. It filters the prompts based on the specified |
| dimension and compiles a list of video paths and associated prompts in the specified language. |
| |
| Notes: |
| - The JSON file is expected to contain a list of dictionaries with keys 'dimension', "edited_video_path", and language-based prompts. |
| - The function assumes that the "edited_video_path" key in the JSON can either be a list or a single string value. |
| """ |
| video_list = [] |
| full_prompt_list = load_json(json_dir) |
| for each_item in full_prompt_list: |
| if dimension in each_item['dimension'] and "edited_video_path" in each_item: |
| source_folder = each_item["edited_video_path"] |
| output_folder = os.path.join(source_folder, "tempt_dir") |
| folder_name = os.path.basename(source_folder) |
| gif_path = os.path.join(output_folder, f"{folder_name}.gif") |
|
|
| video_list.append(gif_path) |
| return video_list |
|
|
| def init_submodules(dimension_list, read_frame=False): |
| submodules_dict = {} |
| for dimension in dimension_list: |
| os.makedirs(CACHE_DIR, exist_ok=True) |
| if dimension == 'background_consistency': |
| |
| vit_b_path = 'ViT-B/32' |
|
|
| submodules_dict[dimension] = [vit_b_path, read_frame] |
|
|
| |
| elif dimension == 'subject_consistency': |
| submodules_dict[dimension] = { |
| 'repo_or_dir':'facebookresearch/dino:main', |
| 'source':'github', |
| 'model': 'dino_vitb16', |
| 'read_frame': read_frame |
| } |
|
|
| elif dimension == 'aesthetic_quality': |
| aes_path = f'{CACHE_DIR}/aesthetic_model/emb_reader' |
|
|
| vit_l_path = 'ViT-L/14' |
| submodules_dict[dimension] = [vit_l_path, aes_path] |
| elif dimension == 'imaging_quality': |
| musiq_spaq_path = f'{CACHE_DIR}/pyiqa_model/musiq_spaq_ckpt-358bb6af.pth' |
| if not os.path.isfile(musiq_spaq_path): |
| wget_command = ['wget', 'https://github.com/chaofengc/IQA-PyTorch/releases/download/v0.1-weights/musiq_spaq_ckpt-358bb6af.pth', '-P', os.path.dirname(musiq_spaq_path)] |
| subprocess.run(wget_command, check=True) |
| submodules_dict[dimension] = {'model_path': musiq_spaq_path} |
| else: |
| submodules_dict[dimension] = None |
| return submodules_dict |
|
|
|
|
| def save_json(data, path, indent=4): |
| with open(path, 'w', encoding='utf-8') as f: |
| json.dump(data, f, indent=indent) |
|
|
| def load_json(path): |
| """ |
| Load a JSON file from the given file path. |
| |
| Parameters: |
| - file_path (str): The path to the JSON file. |
| |
| Returns: |
| - data (dict or list): The data loaded from the JSON file, which could be a dictionary or a list. |
| """ |
| with open(path, 'r', encoding='utf-8') as f: |
| return json.load(f) |
|
|